Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 650 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 650 Bytes

Linked list implementation using go lang.

It has all basic ADT of linkedlist


  1. Create 10 node with random data
  2. Print the all node of LinkedList
  3. Print the all node of LinkedList recursively
  4. Print the all node of LinkedList in reverse order
  5. Find the length of LinkedList
  6. Find the length of LinkedList recursively
  7. Find the total sum of LinkedList
  8. Find the total sum of LinkedList recursively
  9. Find the max element of LinkedList
  10. Find the max element of LinkedList recursively
  11. Search an element in LinkedList
  12. Search an element in LinkedList recursively
  13. Improve searching in LinkedList