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.
|
1
|
|||||||||
|
|
|
This should do what you want:
|
||
|
|
|
|
or
|
||
|
|
|
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. |
||
|
|
|
|
Assuming you want to copy the key and the value:
|
||||||||||
|
|
|
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. |
||
|
|
|
|
A
|
||||
|
|
|
You can use a different map (or set) and use transform to do the sorting as you insert:
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. |
||
|
|
