Linked List Operations
Various Operations that can be performed on Linked List are:
| (1) | Insertion of a new node at starting of the list. | Read More |
| (2) | Insertion of a new node at the end of the list. | Read More |
| (3) | nsertion of a new node after a given node. | Read More |
| (4) | Insertion of a new node before a given node. | Read More |
| (5) | Insertion of a new node in sorted linked list. | Read More |
| (6) | Deleting the first node from a linked list. | Read More |
| (7) | Deleting the last node from a linked list. | Read More |
| (8) | Searching a node in Linked List. | Read More |
| (9) | Count number of nodes in linked list. | Read More |