All Operations on Singly Linked List
All Operations on Singly Linked Link List
I have combined all the operation that could be performed on a singly linked link list and mashed it up into a single program. All the operations are separate and independent with the use of separate function for each operations.The operations which have been used are : -
1. Initializing node and adding.
2. Inserting node at any position.
3. Deletion of Node at any position.
4. Counting the total number of nodes.
5. Traversing and printing a linklist(Iteratively)
6. Traversing a link-list and printing it backward(Recursively)
7. Inversing a Singly Linked List using Iteration.
8. Inversing a Singly Linked List using recursion.
The program in C
Comments
Post a Comment