Linked Lists generator
This was our first course project, we studied in the first chatpters
about linear data structures and applied to them some functions, linke
searching algorithms and sorting algorithms. The required project was
a very simple C program
about the basics of single linked lists, and which sorting algorithms
are best suited for them. linked lists was a very fun topic for me and
I enjoyed sovling related questions and puzzlez, and this writing this
program was no exceptions. Here some of the functions of the program:
- Create a Linked List by intializing the first node.
- Select intial size of the list.
- Start filling the list.
- Find the first node in the list.
- Find the last node in the list.
- Find the next node.
- Show the content of the selected node.
- Find the size of the list.
- Delete first node.
- Delete last node.
- Delete next node.
- Add a node before the selected node.
- Add a node after the selected node.
- Sort using bubble sort.
- Sort using merge sort.