C++ map用法總結(整理)
1,map簡介
map是STL的一個關聯容器,它提供一對一的hash。
第一個可以稱為關鍵字(key),每個關鍵字隻能在map中出現一次;第二個可能稱為該關鍵字的值(value);
map以模板(泛型)方式實現,可以存儲任意類型的數據,包括使用者自定義的數據類型。Map主要用於資料一對一映射(one-to-one)的情況,map內部的實現自建一顆紅黑樹,這顆樹具有對數據自動排序的功能。在map內部所有的數據都是有序的,後邊我們會見識到有序的好處。比如一個班級中,每個學生的學號跟他的姓名就存在著一對一映射的關系。
2,map的功能
自動建立key - value的對應。key 和 value可以是任意你需要的類型,包括自定義類型。
3,使用map
使用map得包含map類所在的頭文件
#include <map> //註意,STL頭文件沒有擴展名.h
map對象是模板類,需要關鍵字和存儲對象兩個模板參數:
std:map<int, string> personnel;
這樣就定義瞭一個用int作為索引,並擁有相關聯的指向string的指針.
為瞭使用方便,可以對模板類進行一下類型定義,
typedef map<int,CString> UDT_MAP_INT_CSTRING;
UDT_MAP_INT_CSTRING enumMap;
4,map的構造函數
map共提供瞭6個構造函數,這塊涉及到內存分配器這些東西,略過不表,在下面我們將接觸到一些map的構造方法,這裡要說下的就是,我們通常用如下方法構造一個map:
map<int, string> mapStudent;
5,插入元素
// 定義一個map對象 map<int, string> mapStudent; // 第一種 用insert函數插入pair mapStudent.insert(pair<int, string>(000, "student_zero")); // 第二種 用insert函數插入value_type數據 mapStudent.insert(map<int, string>::value_type(001, "student_one")); // 第三種 用"array"方式插入 mapStudent[123] = "student_first"; mapStudent[456] = "student_second";
以上三種用法,雖然都可以實現數據的插入,但是它們是有區別的,當然瞭第一種和第二種在效果上是完成一樣的,用insert函數插入數據,在數據的 插入上涉及到集合的唯一性這個概念,即當map中有這個關鍵字時,insert操作是不能在插入數據的,但是用數組方式就不同瞭,它可以覆蓋以前該關鍵字對 應的值,用程序說明如下:
mapStudent.insert(map<int, string>::value_type (001, "student_one")); mapStudent.insert(map<int, string>::value_type (001, "student_two"));
上面這兩條語句執行後,map中001這個關鍵字對應的值是“student_one”,第二條語句並沒有生效,那麼這就涉及到我們怎麼知道insert語句是否插入成功的問題瞭,可以用pair來獲得是否插入成功,程序如下
// 構造定義,返回一個pair對象 pair<iterator,bool> insert (const value_type& val); pair<map<int, string>::iterator, bool> Insert_Pair; Insert_Pair = mapStudent.insert(map<int, string>::value_type (001, "student_one")); if(!Insert_Pair.second) cout << ""Error insert new element" << endl;
我們通過pair的第二個變量來知道是否插入成功,它的第一個變量返回的是一個map的迭代器,如果插入成功的話Insert_Pair.second應該是true的,否則為false。
6, 查找元素
當所查找的關鍵key出現時,它返回數據所在對象的位置,如果沒有,返回iter與end函數的值相同。
// find 返回迭代器指向當前查找元素的位置否則返回map::end()位置 iter = mapStudent.find("123"); if(iter != mapStudent.end()) cout<<"Find, the value is"<<iter->second<<endl; else cout<<"Do not Find"<<endl;
7, 刪除與清空元素
//迭代器刪除 iter = mapStudent.find("123"); mapStudent.erase(iter); //用關鍵字刪除 int n = mapStudent.erase("123"); //如果刪除瞭會返回1,否則返回0 //用迭代器范圍刪除 : 把整個map清空 mapStudent.erase(mapStudent.begin(), mapStudent.end()); //等同於mapStudent.clear()
8,map的大小
在往map裡面插入瞭數據,我們怎麼知道當前已經插入瞭多少數據呢,可以用size函數,用法如下:
int nSize = mapStudent.size();
9,map的基本操作函數:
C++ maps是一種關聯式容器,包含“關鍵字/值”對
begin() 返回指向map頭部的迭代器
clear() 刪除所有元素
count() 返回指定元素出現的次數
empty() 如果map為空則返回true
end() 返回指向map末尾的迭代器
equal_range() 返回特殊條目的迭代器對
erase() 刪除一個元素
find() 查找一個元素
get_allocator() 返回map的配置器
insert() 插入元素
key_comp() 返回比較元素key的函數
lower_bound() 返回鍵值>=給定元素的第一個位置
max_size() 返回可以容納的最大元素個數
rbegin() 返回一個指向map尾部的逆向迭代器
rend() 返回一個指向map頭部的逆向迭代器
size() 返回map中元素的個數
swap() 交換兩個map
upper_bound() 返回鍵值>給定元素的第一個位置
value_comp() 返回比較元素value的函數
到此這篇關於C++ map用法總結(整理)的文章就介紹到這瞭,更多相關C++ map用法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!