您好,登錄后才能下訂單哦!
本篇內容主要講解“C++中如何使用map標準模板庫”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++中如何使用map標準模板庫”吧!
一:介紹
map是STL的關聯式容器,以key-value的形式存儲,以紅黑樹(平衡二叉查找樹)作為底層數據結構,對數據有自動排序的功能。
命名空間為std,所屬頭文件<map> 注意:不是<map.h>
二:常用操作
容量:
a.map中實際數據的數據:map.size()
b.map中最大數據的數量:map.max_size()
c.判斷容器是否為空:map.empty()
修改:
a.插入數據:map.insert()
b.清空map元素:map.clear()
c.刪除指定元素:map.erase(it)
迭代器:
a.map開始指針:map.begin()
b.map尾部指針:map.end() 注:最后一個元素的下一個位置,類似為NULL,不是容器的最后一個元素
三:存儲
map<int, string> map1; //方法1: map1.insert(pair<int, string>(2, "beijing")); //方法2: map1[4] = "changping"; //方法3: map1.insert(map<int, string>::value_type(1, "huilongguan")); //方法4: map1.insert(make_pair<int, string>(3, "xierqi"));
四:遍歷
for (map<int, string>::iterator it=map1.begin(); it!=map1.end(); it++) { cout << it->first << ":" << it->second << endl; }
五:查找
string value1 = map1[2]; if (value1.empty()) { cout << "not found" << endl; } //方法2 map<int, string>::iterator it = map1.find(2); if (it == map1.end()) { cout << "not found" << endl; } else { cout << it->first << ":" << it->second << endl; }
六:修改
//修改數據 map1[2] = "tianjin";
七:刪除
//方法1 map1.erase(1); //方法2 map<int, string>::iterator it1 = map1.find(2); map1.erase(it1);
到此,相信大家對“C++中如何使用map標準模板庫”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。