Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 731 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 731 Bytes

Student Management System

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.

Features

  1. Add a student (ID, name, generation).
  2. Retrieve a student by ID (using Binary Search).
  3. Update a student's details.
  4. Remove a student by ID.
  5. Sort students by name (using Merge Sort).
  6. Display all students.

Before Using

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.

How to Use

Compile and run the program:

g++ -o student_manager student_manager.cpp
./student_manager