19.允许重复的unordered_map

Posted 喵小喵~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了19.允许重复的unordered_map相关的知识,希望对你有一定的参考价值。

 1 #include <string>
 2 #include <iostream>
 3 //查询性能最高
 4 //允许重复的,hash_map
 5 #include <unordered_map>
 6 #include <algorithm>
 7 using namespace std;
 8 
 9 
10 void main()
11 {
12     //允许重复的映射
13     unordered_multimap<string, double>mymap{ {"a1",113},{ "a2",143 },{ "a3",1123 } };
14 
15     mymap.insert(pair<string, double>("a4", 345));
16     mymap.insert(pair<string, double>("a4", 315));
17     mymap.insert(pair<string, double>("a4", 325));
18     mymap.insert(pair<string, double>("a4", 335));
19 
20     /*mymap.insert(unordered_multimap<string, double>::value_type("a5", 3425));*/
21 
22     /*for (auto i : mymap)
23     {
24         cout << i.first << "  " << i.second << endl;
25     }*/
26 
27     /*auto it = mymap.find("a1");
28     if (it != mymap.end())
29     {
30         cout << it->second << endl;
31     }*/
32 
33     //查找所有
34     auto it = mymap.equal_range("a4");
35 
36     for_each(it.first, it.second, [](unordered_multimap<string, double>::value_type &x) {cout << x.first << "  " << x.second << endl; });
37     cin.get();
38 }

 

以上是关于19.允许重复的unordered_map的主要内容,如果未能解决你的问题,请参考以下文章

CSP核心代码片段记录

有趣的 C++ 代码片段,有啥解释吗? [复制]

为啥允许 std::unordered_map::rehash() 使迭代器无效?

21.hash_map(已被废弃不再使用 被unordered_map代替)

在 std::map 和 std::unordered_map 之间进行选择 [重复]

片段中的LayoutInflator错误“不兼容的类型”[重复]