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
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.
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