Question: I am using this function with to display both cars and numbers. If I want to display a specific element of an unordered map, how
I am using this function with to display both cars and numbers. If I want to display a specific element of an unordered map, how would I do this. The unordered map is structured like this: unordered_map> u_map; // This displays both cars and numbers void display() { for (auto &it : u_map) { cout << it.first << ":"; for (int x = 0; x < it.second.size(); x++) { cout << it.second[x] << " "; } cout << endl; } }
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
