Question: Construct the linked list (and the connections) based on the given input file. Then, we can insert a new student to the list or delete
Construct the linked list (and the connections) based on the given input file. Then, we can insert a new student to the list or delete an existing student from the list.
When we add a new node to the list, it must be inserted to the sorted list to maintain the consistent alphabetical and ID orderings.
We can delete any existing node from the beginning, middle, or end of the list.
After insertion and deletion operations, you should carefully re-arrange the links among the nodes. 
in C programming language.
surname head ID_head name head name: "Ayse" surname: "Yilmaz" name: "Veli" surname: "Aslan" name: "Fatma" surname: "Ozde" ID: 1204 ID: 1515 ID: 1001 name next surname next=NULL ID_next name next = NULL surname next ID next = NULL name next surname next ID next surname head ID_head name head name: "Ayse" surname: "Yilmaz" name: "Veli" surname: "Aslan" name: "Fatma" surname: "Ozde" ID: 1204 ID: 1515 ID: 1001 name next surname next=NULL ID_next name next = NULL surname next ID next = NULL name next surname next ID next
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
