Nine common functions that manipulate a linked list through user input. The functions are:
- Add (insert anywhere)
- Find (linear search)
- Delete
- Replace
- Swap
- Get Length
- Reverse (recursively)
- Sort (merge sort)
Compile and run the LinkedList.c file.
Follow the prompts in the terminal and test out each function.
Keep at least one node in the linked list, or some bugs might appear.