all students, dropouts removed and sorted first name last name: courses enrolled Andrew Turner:cs3 Betty Torres:cs1 Brian Sanchez:cs1 cs4 ...Here is the output for the above example roster files.
The project should be done using associative containers and class Student to hold the name of the student. Specifically, you need to use a map keyed by the class Student while value could be a list of classes the student is enrolled in. The map should be the ordered map. That is, the data structure to be used in as follows: map<Student, list<string>>
Currently Enrolled Students Andrew Turner Betty Torres Brian Sanchez ...