C++进阶-3-6-map/multimap容器

  1 #include<iostream>
2 #include<map>
3 using namespace std;
4
5 // map / multimap容器
6
7 void printMap(map<int, int>& m) {
8 for (map<int, int>::iterator it = m.begin(); it != m.end(); it++) {
9 cout << "key = " << (*it).first << " value = " << it->second << endl;
10 }
11 cout << endl;
12 }
13
14 // 1.构造和赋值
15 void test01() {
16
17 // 创建map容器
18 map<int, int> m;
19
20 m.insert(pair<int, int>(1, 10));
21 m.insert(pair<int, int>(2, 20));
22 m.insert(pair<int, int>(3, 30));
23 m.insert(pair<int, int>(4, 40));
24
25 printMap(m);
26
27 // 拷贝构造
28 map<int, int>m2(m);
29 printMap(m2);
30
31 // 赋值
32 map<int, int>m3;
33 m3 = m2;
34 printMap(m3);
35
36 }
37
38 // 2.大小和交换
39 void test02() {
40
41 map<int, int> m;
42
43 m.insert(pair<int, int>(1, 10));
44 m.insert(pair<int, int>(2, 20));
45 m.insert(pair<int, int>(3, 30));
46 m.insert(pair<int, int>(4, 40));
47
48 //printMap(m);
49
50 // 大小
51 if (m.empty()) {
52 cout << "m 为空" << endl;
53 }
54 else
55 {
56 cout << "m 不为空" << endl;
57 cout << "m 的大小为:" << m.size() << endl;
58 }
59
60 // 交换
61 map<int, int> m2;
62
63 m2.insert(pair<int, int>(5, 50));
64 m2.insert(pair<int, int>(6, 60));
65 m2.insert(pair<int, int>(7, 70));
66 m2.insert(pair<int, int>(8, 80));
67
68 cout << "交换前:" << endl;
69 printMap(m);
70 printMap(m2);
71
72 cout << "交换后:" << endl;
73 m.swap(m2);
74 printMap(m);
75 printMap(m2);
76 }
77
78 // 3.插入和删除
79 void test03() {
80
81 map<int, int> m;
82
83 // 插入
84 // 第一种
85 m.insert(pair<int, int>(1, 10));
86 printMap(m);
87
88 // 第二种
89 m.insert(make_pair(2, 20));
90 printMap(m);
91
92 // 第三种
93 m.insert(map<int, int>::value_type(3, 30));
94 printMap(m);
95
96 // 第四种
97 m[4] = 40; // 不建议插入使用
98 printMap(m);
99
100
101 // 删除
102 m.erase(m.begin());
103 printMap(m);
104
105 m.erase(3); // 按照key删除
106 printMap(m);
107
108 // 清空
109 //m.erase(m.begin(), m.end());
110 m.clear();
111 printMap(m);
112 }
113
114 // 4.查找和统计
115 void test04() {
116
117 map<int, int> m;
118
119 m.insert(pair<int, int>(1, 10));
120 m.insert(pair<int, int>(2, 20));
121 m.insert(pair<int, int>(3, 30));
122 m.insert(pair<int, int>(4, 40));
123
124 printMap(m);
125
126 // 查找,find返回的是迭代器
127 map<int, int>::iterator pos = m.find(3);
128
129 if (pos != m.end()) {
130 cout << "查到了元素,key = " << (*pos).first << " value = " << pos->second << endl;
131 }
132 else
133 {
134 cout << "未找到元素" << endl;
135 }
136
137 // 统计, map中无重复的key,所以,统计值为0或1
138 // multimap的count统计可能大于1
139 int num = m.count(1);
140 cout << "num = " << num << endl;
141
142 }
143
144 // 5. 排序
145
146 class MyCompare {
147 public:
148 bool operator()(int v1, int v2) {
149 // 降序
150 return v1 > v2;
151 }
152
153 };
154
155 void printMap1(map<int, int, MyCompare>& m) {
156 for (map<int, int, MyCompare>::iterator it = m.begin(); it != m.end(); it++) {
157 cout << "key = " << (*it).first << " value = " << it->second << endl;
158 }
159 cout << endl;
160 }
161
162 void test05() {
163
164 map<int, int> m;
165
166 m.insert(pair<int, int>(1, 10));
167 m.insert(pair<int, int>(2, 20));
168 m.insert(pair<int, int>(3, 30));
169 m.insert(pair<int, int>(4, 40));
170
171 // 排序 默认:从小到大,升序
172 printMap(m);
173
174 // 降序
175 map<int, int, MyCompare> m2;
176
177 m2.insert(pair<int, int>(1, 10));
178 m2.insert(pair<int, int>(2, 20));
179 m2.insert(pair<int, int>(3, 30));
180 m2.insert(pair<int, int>(4, 40));
181
182 printMap1(m2);
183
184 }
185
186 int main() {
187
188 // 1.构造和赋值
189 //test01();
190
191 // 2.大小和交换
192 //test02();
193
194 // 3.插入和删除
195 //test03();
196
197 // 4.查找和统计
198 //test04();
199
200 // 5. 排序,默认,从小到大升序
201 test05();
202
203 system("pause");
204
205 return 0;
206 }
207
208 // 总结
209 //
210 // map / multimap容器
211 //
212 // 简介:
213 // map中所有元素都是pair
214 // pair中第一个元素为key,起索引作用,第二个元素为value
215 // 所有元素都回根据元素的键值自动排序
216 //
217 // 本质:属于关联式容器,地层结构用二叉树实现
218 //
219 // 优点:可以根据key值快速找到value值
220 //
221 // map / multimap区别:
222 // map不允许容器中有重复的key
223 // multi允许容器中有重复的key
224 //

C++进阶-3-6-map/multimap容器的更多相关文章

  1. 2.9 C++STL map/multimap容器详解

    文章目录 2.9.1 引入 2.9.2 代码示例 map案列 multimap案列 2.9.3 代码运行结果 总结 2.9.1 引入 map相对于set区别,map具有键值和实值,所有元素根据键值自动 ...

  2. iBinary C++STL模板库关联容器之map/multimap

    目录 一丶关联容器map/multimap 容器 二丶代码例子 1.map的三种插入数据的方法 3.map集合的遍历 4.验证map集合数据是否插入成功 5.map数据的查找 6.Map集合删除元素以 ...

  3. STL学习系列九:Map和multimap容器

    1.map/multimap的简介 map是标准的关联式容器,一个map是一个键值对序列,即(key,value)对.它提供基于key的快速检索能力. map中key值是唯一的.集合中的元素按一定的顺 ...

  4. 09--STL关联容器(map/multimap)

    一:map/multimap的简介 map是标准的关联式容器,一个map是一个键值对序列,即(key,value)对.它提供基于key的快速检索能力. map中key值是唯一的.集合中的元素按一定的顺 ...

  5. STL之Map和multimap容器

    1.Map和multimap容器 1)map是标准的关联式容器,一个map是一个键值对序列,即(key,value)对.它提供基于key的快速检索能力. 2)map中key值是唯一的.集合中的元素按一 ...

  6. C++ STL 学习笔记__(8)map和multimap容器

    10.2.9 Map和multimap容器 map/multimap的简介 ²  map是标准的关联式容器,一个map是一个键值对序列,即(key,value)对.它提供基于key的快速检索能力. ² ...

  7. STL Map和multimap 容器

    STL Map和multimap 容器 map/multimap的简介 map是标准的关联式容器,一个map是一个键值对序列,即(key,value)对.它提供 基于key的快速检索能力.       ...

  8. STL——容器(Map & multimap)的删除

    Map & multimap 的删除 map.clear();           //删除所有元素 map.erase(pos);      //删除pos迭代器所指的元素,返回下一个元素的 ...

  9. STL——容器(Map & multimap)的大小

    1. Map & multimap 的大小 map.size();     //返回容器中元素的数目 map.empty();//判断容器是否为空, 容器中有内容将会返回 false 代码示例 ...

随机推荐

  1. 什么是 MyBatis 的接口绑定?有哪些实现方式?

    接口绑定,就是在 MyBatis 中任意定义接口,然后把接口里面的方法和 SQL 语句绑 定, 我们直接调用接口方法就可以,这样比起原来了 SqlSession 提供的方法我们可 以有更加灵活的选择和 ...

  2. 学习saltstack (六)

    Slatstack 介绍 官网:https://saltstack.com/ 官方源:http://repo.saltstack.com/  (介绍各操作系统安装方法) centos 6源 ? 1 y ...

  3. fsdfd

    static int kWeiOfVal(int val, int k) { int n = 1; int temVal = val; int result; while (1) { temVal = ...

  4. C/C++头文件以及避免头文件包含造成的重定义方法

    C 头文件 头文件是扩展名为 .h 的文件,包含了 C 函数声明和宏定义,被多个源文件中引用共享.有两种类型的头文件:程序员编写的头文件和编译器自带的头文件. 在程序中要使用头文件,需要使用 C 预处 ...

  5. HTML5摇一摇(上)—如何判断设备摇动

    刚刚过去的一年里基于微信的H5营销可谓是十分火爆,通过转发朋友圈带来的病毒式传播效果相信大家都不太陌生吧,刚好最近农历新年将至,我就拿一个"摇签"的小例子来谈一谈HTML5中如何调 ...

  6. 从零开始:微信小程序新手入门宝典《一》

    为了方便大家了解并入门微信小程序,我将一些可能会需要的知识,列在这里,让大家方便的从零开始学习: 一:微信小程序的特点 张小龙:张小龙全面阐述小程序,推荐通读此文: 小程序是一种不需要下载.安装即可使 ...

  7. 如何监控微信小程序HTTP请求错误

    摘要: Fundebug的微信小程序错误监控插件更新至0.5.0,支持监控HTTP请求错误. 接入插件 接入Fundebug的错误监控插件非常简单,只需要下载fundebug.0.5.0.min.js ...

  8. PYthon窗口学习之用异步请求解决Treeview列表插入大量数据反应慢的解决办法

    当列表插入大量数据时,经常会等一会才显示数据 异步请求就将每一个插入语句并发运行,从而提高插入速度 代码: # 显示结果 def insert_result(table, info): def ins ...

  9. js知识梳理5:关于函数的要点梳理(1)

    写在前面 注:这个系列是本人对js知识的一些梳理,其中不少内容来自书籍:Javascript高级程序设计第三版和JavaScript权威指南第六版,感谢它们的作者和译者.有发现什么问题的,欢迎留言指出 ...

  10. Spring Boot-@Conditional注解以及衍生注解@ConditionalOnBean

    @Conditional:判断@Conditional指定的条件是否成立,如果成立才会给容器中添加组件,配置类里面的内容才会生效 我们发现有很多的自动配置类,但是这些自动配置类都有指定的条件,必须满足 ...