Linked List(Single, Double, Circular Single and Circular Double) coded in C with following functions:
- Random Insert in the Linked List.
- Add an node in the Beginning of the Linked List.
- Add an node in the End of the Linked List.
- Add an node after a specific node in the Linked List.
- Delete an node in the Beginning of the Linked List.
- Delete an node in the End of the Linked List.
- Delete a specific node in the Linked List.
- Search an element in the Linked List.
- Traverse/Display the Linked List.