LAB4 Assignment
LAB4 Assignment
Objective:
Write a C++ program to get hands-on experience with the Linked List data structure. Implement
a Linked List to manage student information. The linked list should store each student's:
Name
Age
Address
Telephone number
ID number
Tasks:
1. Insert Student Information
Write the necessary function to add a new student’s data to the list.
2. Delete One Student’s Information
Write the necessary function to remove a specific student from the list based on their ID
or other identifying data.
3. Delete All Students' Information
Write the necessary function to display the data of all students currently in the list.
6. Search for a Student
Write the necessary function to check whether a student exists in the list based on their
ID or other criteria.
7. Count Students in the List
Write the necessary function to determine how many students are currently stored in the
linked list.