I don't really understand how to implement these functions. I have everything else working but these. Here are the instructions for this project:
Implement the function printHighestToLowestVotes as follows:
Create a map of integers and strings and copy all the total votes and correspondent first name and last name of each candidate. (The map will be in order by total votes.)
o The Big Three
Since you have dynamic variables in your class, you should make sure that the big three are implements. You already have the destructor, but you will need to add a copy constructor and the overloaded assignment operator. This is simpler than it sounds, but it requires some thinking. You need to make sure that both the copy constructor and the assignment operator create new containers. To check this, you can either look in the debugger to see if the addresses are different, or you can create temporary functions to check that your copy constructor and overloaded assignment operator are doing what is expected.