This is a simple C++ program to manage a list of students. It allows you to add, retrieve, update, remove, and display students using a Binary Search Tree (BST).
- Add Student: Add a student (ID, name, generation).
- Retrieve Student: Retrieve a student by ID (using BST search).
- Update Student: Update a student's details.
- Remove Student: Remove a student by ID.
- Display All Students: Display all students in sorted order (in-order traversal).
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 the ID section: a number that exceeds 11 digits.
TBD
- Beware, the memory reset each time you lunch the program.
-
Compile the program:
g++ -o student_manager student_manager.cpp
-
Run the program:
./student_manager
Made by Victor and Manech