博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
19.允许重复的unordered_map
阅读量:5113 次
发布时间:2019-06-13

本文共 972 字,大约阅读时间需要 3 分钟。

1 #include 
2 #include
3 //查询性能最高 4 //允许重复的,hash_map 5 #include
6 #include
7 using namespace std; 8 9 10 void main()11 {12 //允许重复的映射13 unordered_multimap
mymap{ {
"a1",113},{ "a2",143 },{ "a3",1123 } };14 15 mymap.insert(pair
("a4", 345));16 mymap.insert(pair
("a4", 315));17 mymap.insert(pair
("a4", 325));18 mymap.insert(pair
("a4", 335));19 20 /*mymap.insert(unordered_multimap
::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
::value_type &x) {cout << x.first << " " << x.second << endl; });37 cin.get();38 }

 

转载于:https://www.cnblogs.com/xiaochi/p/8629668.html

你可能感兴趣的文章
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
转-求解最大连续子数组的算法
查看>>
对数器的使用
查看>>
【ASP.NET】演绎GridView基本操作事件
查看>>
ubuntu无法解析主机错误与解决的方法
查看>>
尚学堂Java面试题整理
查看>>
MySQL表的四种分区类型
查看>>
[BZOJ 3489] A simple rmq problem 【可持久化树套树】
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>
hihocoder1187 Divisors
查看>>
Azure 托管镜像和非托管镜像对比
查看>>