i need to sort a std::map using its value rather than its key. is there a easy way to do it.
i got one solution in the follwing thread:
std::map sort by data?
is there any better solution.
map<long, double> testMap; // some code to generate the values in the map. sort(testMap.begin(), testMap.end()); // is there any function like this to sort the map?