Say there is a map: typedef map<int, string> MyMap;

I'd like to traverse it by the string, for example:

3 -> a
1 -> b
7 -> b
2 -> c

One way is to sort this map by its value. But I'm afraid this will have impact to find() efficiency (is it true?)

Another choice is to use boost::bimap. But, as you might notice, the value in MyMap is not unique, so bimap is not applicable here.

Is there a good way to do it?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I found a solution to use multiple values in boost.bimap: multiset_of

The data definition changed to:

#include <boost/bimap/multiset_of.hpp>
typedef boost::bimap<int, boost::bimaps::multiset_of<std::string> > MyMap;

Now I can traverse my data by either key or value.

link|improve this answer
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.