Build a school management system using the Student.hpp and Course.hpp classes, also use the STL vector container and algorithms.

Build program with driven by a menu. The following options should be on the menu:

1. Read student data
2. Show student roster
3. Show student roster (sorted by last name)
4. Show student roster (sorted by student id)
5. Search student roster by name
6. Exit

Definitions of each Option

Read student data: The option should ask the user to enter a path to a file that contains the student data format below for the file. Read the data into an STL vector of Student objects.

Show student roster: This option should display the student data that was read from the file.

Show student roster (sorted by last name): This option should display the student data sorted by last name in alphabetical order. must use the STL sort algorithm for credit.

Show student roster (sorted by student id): The option should display the student data sorted by the student id. You must use the STL sort algorithm for credit.

Search student roster by name: This option should prompt the user for a last name and then display each student that matches. use an STL search algorithm for credit.

Input File Format

The file should be a basic text file with columns separated by a space.

The file should have the columns in the following order:

firstName lastName studentId schoolLevel birthMonth birthday
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.