This is a simple C++ program to manage a list of students. It allows you to add, retrieve, update, remove, sort, and display students using basic data structures and algorithms.
- Add a student (ID, name, generation).
- Retrieve a student by ID (using Binary Search).
- Update a student's details.
- Remove a student by ID.
- Sort students by name (using Merge Sort).
- Display all students.
Here are the inputs you shouldn't use: Anything that is not what is asked (e.g a letter when a number is asked) In ID section: a number that exceed 11 integers.
Compile and run the program:
g++ -o student_manager student_manager.cpp
./student_manager