Question: Create a small student information system to illustrate your understanding of linked lists. Create an ADT, which stores the Students Name, Roll number and discipline
Create a small student information system to illustrate your understanding of linked lists. Create an ADT, which stores the Student’s Name, Roll number and discipline in a list data Structure. Include the following operations on your ADT:
1. Add Student Records (Insert New Node)
2. Modify Student Record (Update Node)
3. Find a Student (Search Node)
4. Delete a student (Delete Node)
Attach code snippets for each function you create and give a screenshot of the working code.Step by Step Solution
3.56 Rating (156 Votes )
There are 3 Steps involved in it
Solution include include include using namespace std bool first trueIndicator for first node Structure for student node class studentNode public string name string discipline int rollNo studentNode ne... View full answer
Get step-by-step solutions from verified subject matter experts
