Question: C++ language List, Vector, Stack, Queue, Set, Map, UnorderedMap, PriorityQueue Make a Student class that has Name, GPA, and StudentDebt as properties In main, make
C++ language
List, Vector, Stack, Queue, Set, Map, UnorderedMap, PriorityQueue
- Make a Student class that has Name, GPA, and StudentDebt as properties
- In main, make a List of ints. Add some numbers to it
- Make a Vector of Students. Add some Student objects to it
- Make a Stack of Student Pointers. Push and pop some dynamically created Students to it. Make sure you don't leak memory
- Make a Set of ints. Add some numbers to it
- Make a Map of strings to ints. Put some movie titles and the year they cam out in it
- Do #6 with an unordered map
And then the hard ones
- Make a priority queue that uses a Student's GPA for the sort criteria. Add some Student objects and show that the next one popped is the highest GPA
- Make a priority queue that uses a Student's Debt for the sort criteria. Add some Student pointers for dynamically created Students and show the next one popped is the one with the least debt.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
