Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
Why on Earth is the C tag on this question? – GManNickG Feb 20 '11 at 11:14
1  
Why do you need the map sorted that way? Are you trying to improve lookup time, or do you want to traverse it a certain way? – Matt Curtis Feb 20 '11 at 11:18
You can switch key with value. – Pawel Zubrycki Feb 20 '11 at 13:17

6 Answers

up vote 5 down vote accepted

Even though correct answers have already been posted, I thought I'd add a demo of how you can do this cleanly:

template<typename A, typename B>
std::pair<B,A> flip_pair(const std::pair<A,B> &p)
{
    return std::pair<B,A>(p.second, p.first);
}

template<typename A, typename B>
std::map<B,A> flip_map(const std::map<A,B> &src)
{
    std::map<B,A> dst;
    std::transform(src.begin(), src.end(), std::inserter(dst, dst.begin()), 
                   flip_pair<A,B>);
    return dst;
}

int main(void)
{
    std::map<int, double> src;

    ...    

    std::map<double, int> dst = flip_map(src);
    // dst is now sorted by what used to be the value in src!
}
share|improve this answer
thanks for the sample code. it helped me to generalize the solution. now i can filp any map easily. – user619237 Feb 21 '11 at 20:00
1  
+1 for the clean solution. However, it would be better if the destination map was a multimap, in order to avoid collisions with same "value" keys. – theosem Apr 10 at 12:27

If you want to present the values in a map in sorted order, then copy the values from the map to vector and sort the vector.

share|improve this answer
1  
+1: This (or variants thereof, such as creating an "inverse" map) is the right answer. – Oli Charlesworth Feb 20 '11 at 11:25
1  
if i do this. then i loose the relation between the key and values. say, i have map<long, double> id2Score. it contains all the id (where id is not 0..n, it may be like 1, 5, 13 etc) and score. then if i create a vector with score and sort then i will loose the information which id is associated with which score. – user619237 Feb 21 '11 at 19:58

You can't sort a std::map this way, because a the entries in the map are sorted by the key. If you want to sort by value, you need to create a new std::map with swapped key and value.

map<long, double> testMap;
map<double, long> testMap2;

// Insert values from testMap to testMap2
// The values in testMap2 are sorted by the double value

Remember that the double keys need to be unique in testMap2 or use std::multimap.

share|improve this answer
thanks. but i know this solution. is there any other solution except this? – user619237 Feb 20 '11 at 11:35

I like the the answer from Oli (flipping a map), but seems it has a problem: the container map does not allow two elements with the same key.

A solution is to make dst the type multimap. Another one is to dump src into a vector and sort the vector. The former requires minor modifications to Oli's answer, and the latter can be implemented using STL copy concisely

#include <iostream>
#include <utility>
#include <map>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
  map<int, int> m;
  m[11] = 1;
  m[22] = 2;
  m[33] = 3;

  vector<pair<int, int> > v;
  copy(m.begin(),
       m.end(),
       back_inserter<vector<pair<int, int> > >(v));

  for (size_t i = 0; i < v.size(); ++i) {
    cout << v[i].first << " , " << v[i].second << "\n";
  }

  return 0;
};
share|improve this answer

A std::map sorted by it's value is in essence a std::set. By far the easiest way is to copy all entries in the map to a set (taken and adapted from here)

template <typename M, typename S> 
void MapToSet( const  M & m, S & s )
{
    typename M::const_iterator end = m.end();
    for( typename M::const_iterator it = m.begin(); it != end ; ++it )
    {
        s.insert( it->second );
    }
}

One caveat: if the map contains different keys with the same value, they will not be inserted into the set and be lost.

share|improve this answer

U can consider using boost::bimap that might gave you a feeling that map is sorted by key and by values simultaneously (this is not what really happens, though)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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