Linked list implementation using go lang.
It has all basic ADT of linkedlist
- Create 10 node with random data
- Print the all node of LinkedList
- Print the all node of LinkedList recursively
- Print the all node of LinkedList in reverse order
- Find the length of LinkedList
- Find the length of LinkedList recursively
- Find the total sum of LinkedList
- Find the total sum of LinkedList recursively
- Find the max element of LinkedList
- Find the max element of LinkedList recursively
- Search an element in LinkedList
- Search an element in LinkedList recursively
- Improve searching in LinkedList