C++進階-3-6-map/multimap容器

来源:https://www.cnblogs.com/LYH-win/archive/2022/05/08/16245698.html
-Advertisement-
Play Games

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 f ...


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 //  

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ${}字元串可以用於字元串拼接,一般用於模糊查詢中(因為有sql註入的風險,很少用) ...
  • 在開發過程中,不知道有沒有這樣的經歷,項目實際讀取的配置信息有時候總是與預期不符,今天就來研究下 SpringBoot 讀取配置文件順序。 一、SpringBoot 配置文件載入優先順序 SpringBoot官方文檔說明瞭載入的順序如下,越靠前優先順序越高。 Spring Boot uses a ver ...
  • 前言 嗨嘍!大家好呀 第三方模塊: requests >>> pip install requests 模塊安裝問題: 如果安裝python第三方模塊: win + R 輸入 cmd 點擊確定, 輸入安裝命令 pip install 模塊名 (pip install requests) 回車 在py ...
  • 一、Matplotlib 博文來源:https://www.runoob.com/matplotlib/matplotlib-tutorial.html Matplotlib 是 Python 的繪圖庫,它能讓使用者很輕鬆地將數據圖形化,並且提供多樣化的輸出格式。 Matplotlib 可以用來繪製 ...
  • 在系統開發的過程中,必然存在耗時極高的動作,是基於請求響應模式無法解決的問題,通常會採用解耦的思維,並基於非同步或者事件驅動的方式去調度整個流程的完整執行。 ...
  • 一個工作了2年的粉絲,私信了一個比較簡單的問題。 說: “Spring中事務的傳播行為有哪些?” 他說他能記得一些,但是在項目中基本上不需要配置,所以一下就忘記了。 結果導致面試被拒絕,有點遺憾! ok,關於這個問題,看看普通人和高手的回答。 普通人: 嗯。。。。。。。。 高手: 對於這個問題,需要 ...
  • 函數的定義和使用 def test(x): # x代表形參 ''' 2*x+1 :param x:整形數字 :return:返回計算結果 ''' y = 2*x+1 return y p = test(3) # test()表示運行名為test函數,3代表實參,給x進行賦值 print(p) 函數的 ...
  • 介紹瞭如何在程式代碼中嵌入IPython用於調試,並分析了優點與不足 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...