up vote 6 down vote favorite
2
share [g+] share [fb]

What's the best way in C++ to copy a pair from a map to vector? I'm doing this so I can subsequently sort the vector.

link|improve this question

72% accept rate
2  
Very vague question – camh Mar 26 '09 at 4:06
1  
Maps are sorted. You should specify whether you want to sort on another parameter or with a different key. Else the question is self-answered: don't. – David Rodríguez - dribeas Mar 26 '09 at 9:05
feedback

7 Answers

up vote 4 down vote accepted

This should do what you want:

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

using namespace std;

bool cmp(const pair<int, int>  &p1, const pair<int, int> &p2)
{
    return p1.second < p2.second;
}

int main()
{
    map<int, int> m;
    for(int i = 0; i < 10; ++i)
        m[i] = i * -i;

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

    sort(v.begin(), v.end(), cmp);

    for(int i = 0; i < v.size(); ++i)
        cout << v[i].first << " : " << v[i].second << endl;
    return 0;
}
link|improve this answer
feedback
vector<pair<K,V> > v(m.begin(), m.end());

or

vector<pair<K,V> > v(m.size());
copy(m.begin(), m.end(), v.begin());

copy() is in <algorithm>.

link|improve this answer
This one seems to be more elegant and simple – Ram Mar 26 '09 at 4:34
Yes, this is the best, especially the first one. Just a few explaining comments: If you have typedef std::map<K,V> MapType you can't declare the vector vector<MapType::value_type> as value_type is pair<const K, V> which has no operator= and can't be copied into the vector. Also, in the second example it is really important to pass the size of the vector first (either through the constructor or reserve) because copy will not allocate space in the vector as elements are added and there is a strong chance you will run over the end of the vector's initial allocation. – Christopher Howlin Dec 9 '10 at 11:29
feedback

If you're using a std::map, it's already sorted by the key. Just create an iterator and iterate over the map from begin() to end() and you're done.

If you'd like to sort by something other than the map key, you can use the same iterator and push a copy of each element onto your vector as you iterate over the map.

link|improve this answer
May be even simpler: You can specify a comparator in a map's CTor. – foraidt Mar 16 '10 at 10:22
feedback

If your purpose is just to sort by the type instead of the key, you might want to look at Boost::Bimap. It lets you access both parts of the map pair as keys. Presumably you could iterate over it in order of the second key just as easily as the first.

link|improve this answer
feedback

Assuming you want to copy the key and the value:

std::map<Foo, Bar> m;


// Map gets populated 
// (...)


// Copying it to a new vector via the constructor
std::vector<std::pair<Foo, Bar>> v(m.begin(), m.end());


// Copying it to an existing vector, erasing the contents
v.assign(m.begin(), m.end());

// Copying it to the back of an existing vector
v.insert(v.end(), m.begin(), m.end());
link|improve this answer
That last one is incorrect. Maybe you mean v.insert(v.rbegin().base(), m.begin(), m.end()); ? – wilhelmtell Mar 26 '09 at 4:22
whihelmtell - Why do you think it's incorrect? I just tried it - it works fine. – Andrew Shepherd Mar 26 '09 at 4:33
Come to think of it: v.rebegin().base() returns the same iterator as v.end() – Andrew Shepherd Mar 26 '09 at 5:02
It should be OK if v.size() >= 1. The range is inserted from the element before the position iterator. – Functastic Mar 26 '09 at 5:24
It's OK even if the vector is empty. In this case v.insert(v.end(), m_begin(). m.end()) is identical to v.insert(v.begin(), m_begin(). m.end()), because v.begin() == v.end(). – Andrew Shepherd Mar 26 '09 at 11:10
show 2 more comments
feedback

A map stores a pair -- a key and a value. Which part do you want to copy? Or, do you want to copy both to two distinct vectors?

I want to copy both. Once that's done, I need to figure out how to sort the vector by the second value in the pair.

template <class V>
struct sort_by_val {
  bool operator()(V const& l, V const& r) {
        return // ...
  }
};

vector<pair<K, V> > outv(map.begin(), map.end());

sort(outv.begin(), outv.end(), sort_by_val());
link|improve this answer
I want to copy both. Once that's done, I need to figure out how to sort the vector by the second value in the pair. – Jack BeNimble Mar 26 '09 at 4:06
+1, clear & simple solution. @Jack: you should really put the info in your comment into the main question as it's highly relevant -- e.g. it would have prevented everyone from mentioning that maps are already sorted by their first elements. – j_random_hacker Mar 26 '09 at 8:44
feedback

You can use a different map (or set) and use transform to do the sorting as you insert:

#include <map>
#include <algorithm>

typedef std::map<unsigned int, signed char> MapType1;
typedef std::map<MapType1::mapped_type, MapType1::key_type> MapType2;

struct SwapPair
{
  MapType2::value_type operator()(MapType1::value_type const & v)
  {
    return std::make_pair (v.second, v.first);
  }
};

int main ()
{
  MapType1 m1;
  for(int i = 0; i < 10; ++i)
    m1[i] = i * -i;

  MapType2 m2;
  std::transform (m1.begin ()
      , m1.end ()
      , std::inserter (m2, m2.end ())
      , SwapPair ());
}

I forgot to add that if you need to do this a lot then it might be better just to use a boost multi-index container.

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.