如何按键对unordered_map
进行排序?我需要打印按键排序的unordered_map
。
答案 0 :(得分:22)
std::unordered_map<int, int> unordered;
std::map<int, int> ordered(unordered.begin(), unordered.end());
for(auto it = ordered.begin(); it != ordered.end(); ++it)
std::cout << it->second;
答案 1 :(得分:17)
另一种解决方案是构造键的向量,对向量进行排序,并根据该有序向量进行打印。这将比从有序地图构建地图的方法快得多,但也会涉及更多代码。
std::unordered_map<KeyType, MapType> unordered;
std::vector<KeyType> keys;
keys.reserve (unordered.size());
for (auto& it : unordered) {
keys.push_back(it.first);
}
std::sort (keys.begin(), keys.end());
for (auto& it : keys) {
std::cout << unordered[it] << ' ';
}
答案 2 :(得分:12)
你确定你需要这个吗?因为那是不可能的。 unordered_map
是一个哈希容器,即键是哈希。在容器内部,它们与外部的表示不同。即使这个名字暗示你也无法对它进行排序。这是选择哈希容器的标准之一:您不需要特定订单。
如果这样做,请获得正常的map
。密钥按严格弱的顺序自动排序。如果您需要另一种,请编写自己的比较器。
如果您只需要对其进行打印排序,则以下内容可能效率低下,但如果您仍希望保留unordered_map
,则可能会非常接近。
#include <map>
#include <unordered_map>
#include <algorithm>
#include <iostream>
#include <functional>
struct map_streamer{
std::ostream& _os;
map_streamer(std::ostream& os) : _os(os) {}
template<class K, class V>
void operator()(std::pair<K,V> const& val){
// .first is your key, .second is your value
_os << val.first << " : " << val.second << "\n";
}
};
template<class K, class V, class Comp>
void print_sorted(std::unordered_map<K,V> const& um, Comp pred){
std::map<K,V> m(um.begin(), um.end(), pred);
std::for_each(m.begin(),m.end(),map_streamer(std::cout));
}
template<class K, class V>
void print_sorted(std::unordered_map<K,V> const& um){
print_sorted(um, std::less<int>());
}
Example on Ideone。
请注意,在C ++ 0x中,您可以使用默认模板参数将一个函数替换为两个重载:
template<class K, class V, class Comp = std::less<int> >
void print_sorted(std::unordered_map<K,V> const& um, Comp pred = Comp()){
std::map<K,V> m(um.begin(), um.end(), pred);
std::for_each(m.begin(),m.end(),map_streamer(std::cout));
}
答案 3 :(得分:0)
类似于David的回答,我们可以使用std::set
首先对密钥进行排序:
std::unordered_map<int, int> unordered;
std::set<int> keys;
for (auto& it : unordered) keys.insert(it.first);
for (auto& it : keys) {
std::cout << unordered[it] << ' ';
}
答案 4 :(得分:-1)
您可以使用vector存储您的键值对,然后对它们进行矢量排序,最后将它们放回地图。
<canvas id="canvas"><canvas>
使用以下命令进行编译。
#include <iostream>
#include <unordered_map>
#include <algorithm>
#include <vector>
using namespace std;
int main(){
unordered_map<string, int> sdict = {{"hello", 11 }, {"world", 52}, {"tommy", 3}};
unordered_map<string, int> resdict;
vector<pair<string, int>> tmp;
for (auto& i : sdict)
tmp.push_back(i);
for (auto& i : sdict)
cout << i.first << " => " << i.second << endl;
// sort with descending order.
sort(tmp.begin(), tmp.end(),
[&](pair<string, int>& a, pair<string, int>& b) { return a.second < b.second; });
for (auto& i : tmp)
{
resdict[i.first] = i.second;
}
cout << "After sort." << endl;
for (auto& i : resdict)
cout << i.first << " => " << i.second << endl;
return 0;
}
结果是:
g++ --std=c++11 test_sort_ordered_map.cpp