I think (if you could) sort the map by value it would break find() et al.
From std::map reference:
Internally, the elements in the map are sorted from lower to higher key value following a specific strict weak ordering criterion set on construction.
A possibility for the problem described may be to use a sorted std::vector<std::pair<int, std::string>>. Sort the vector prior to when it is to be searched (use std::lower_bound() or some other STL search algorithm that takes advantage of sorted order of the range) or iterated.
For example:
bool compare_first(const std::pair<int, string>& e1,
const std::pair<int, string>& e2)
{
return e1.first < e2.first;
}
bool compare_second(const std::pair<int, string>& e1,
const std::pair<int, string>& e2)
{
return e1.second < e2.second;
}
int main(int argc, char** argv)
{
std::vector<std::pair<int, std::string>> v;
const std::pair<int, std::string> target = std::make_pair(7, "b");
v.push_back(std::make_pair(3, "a"));
v.push_back(std::make_pair(1, "b"));
v.push_back(std::make_pair(7, "b"));
v.push_back(std::make_pair(2, "c"));
std::cout << "\nSorted by 'pair.first'\n";
std::sort(v.begin(), v.end(), compare_first);
for (auto i = v.begin(); i != v.end(); i++)
{
cout << i->first << " = " << i->second << '\n';
}
auto lbf = std::lower_bound(v.begin(), v.end(), target, compare_first);
for (; lbf != v.end() && !compare_first(target, *lbf); lbf++)
{
cout << " Match: " << lbf->first << " = " << lbf->second << "\n";
}
std::cout << "\nSorted by 'pair.second'\n";
std::sort(v.begin(), v.end(), compare_second);
for (auto i = v.begin(); i != v.end(); i++)
{
cout << i->first << " = " << i->second << '\n';
}
auto lbs = std::lower_bound(v.begin(), v.end(), target, compare_second);
for (; lbs != v.end() && !compare_second(target, *lbs); lbs++)
{
cout << " Match: " << lbs->first << " = " << lbs->second << "\n";
}
return 0;
}
The output from this was:
Sorted by 'pair.first'
1 = b
2 = c
3 = a
7 = b
Match: 7 = b
Sorted by 'pair.second'
3 = a
1 = b
7 = b
2 = c
Match: 1 = b
Match: 7 = b