淺談c++中的stl中的map用法詳解。本站提示廣大學習愛好者:(淺談c++中的stl中的map用法詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是淺談c++中的stl中的map用法詳解正文
Map是STL的一個關聯容器,它提供一對一(其中第一個可以稱為關鍵字,每個關鍵字只能在map中呈現一次,第二個能夠稱為該關鍵字的值)的數據處置才能,由於這個特性,它完成有能夠在我們處置一對一數據的時分,在編程上提供疾速通道。這裡說下map外部數據的組織,map外部自建一顆紅黑樹(一種非嚴厲意義上的均衡二叉樹),這顆樹具有對數據自動排序的功用,所以在map外部一切的數據都是有序的,後邊我們會晤識到有序的益處。
上面舉例闡明什麼是一對一的數據映射。比方一個班級中,每個先生的學號跟他的姓名就存在著逐個映射的關系,這個模型用map能夠隨便描繪,很分明學號用int描繪,姓名用字符串描繪(本篇文章中不必char *來描繪字符串,而是采用STL中string來描繪),上面給出map描繪代碼:
Map<int, string> mapStudent;
1. map的結構函數
map共提供了6個結構函數,這塊觸及到內存分配器這些東西,略過不表,在上面我們將接觸到一些map的結構辦法,這裡要說下的就是,我們通常用如下辦法結構一個map:
Map<int, string> mapStudent;
2. 數據的拔出
在結構map容器後,我們就可以往外面拔出數據了。這裡講三種拔出數據的辦法:
第一種:用insert函數拔出pair數據,上面舉例闡明(以下代碼雖然是隨手寫的,應該可以在VC和GCC下編譯經過,大家可以運轉下看什麼效果,在VC下請參加這條語句,屏蔽4786正告 #pragma warning (disable:4786) )
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(pair<int, string>(1, “student_one”)); mapStudent.insert(pair<int, string>(2, “student_two”)); mapStudent.insert(pair<int, string>(3, “student_three”)); map<int, string>::iterator iter; for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
第二種:用insert函數拔出value_type數據,上面舉例闡明
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(map<int, string>::value_type (1, “student_one”)); mapStudent.insert(map<int, string>::value_type (2, “student_two”)); mapStudent.insert(map<int, string>::value_type (3, “student_three”)); map<int, string>::iterator iter; for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
第三種:用數組方式拔出數據,上面舉例闡明
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent[1] = “student_one”; mapStudent[2] = “student_two”; mapStudent[3] = “student_three”; map<int, string>::iterator iter; for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
以上三種用法,雖然都可以完成數據的拔出,但是它們是有區別的,當然了第一種和第二種在效果上是完成一樣的,用insert函數拔出數據,在數據的拔出上觸及到集合的獨一性這個概念,即當map中有這個關鍵字時,insert操作是拔出數據不了的,但是用數組方式就不同了,它可以掩蓋以前該關鍵字對應的值,用順序闡明
mapStudent.insert(map<int, string>::value_type (1, “student_one”)); mapStudent.insert(map<int, string>::value_type (1, “student_two”));
下面這兩條語句執行後,map中1這個關鍵字對應的值是“student_one”,第二條語句並沒有失效,那麼這就觸及到我們怎樣知道insert語句能否拔出成功的問題了,可以用pair來取得能否拔出成功,順序如下
Pair<map<int, string>::iterator, bool> Insert_Pair; Insert_Pair = mapStudent.insert(map<int, string>::value_type (1, “student_one”));
我們經過pair的第二個變量來知道能否拔出成功,它的第一個變量前往的是一個map的迭代器,假如拔出成功的話Insert_Pair.second應該是true的,否則為false。
上面給出完成代碼,演示拔出成功與否問題
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; Pair<map<int, string>::iterator, bool> Insert_Pair; Insert_Pair = mapStudent.insert(pair<int, string>(1, “student_one”)); If(Insert_Pair.second == true) { Cout<<”Insert Successfully”<<endl; } Else { Cout<<”Insert Failure”<<endl; } Insert_Pair = mapStudent.insert(pair<int, string>(1, “student_two”)); If(Insert_Pair.second == true) { Cout<<”Insert Successfully”<<endl; } Else { Cout<<”Insert Failure”<<endl; } map<int, string>::iterator iter; for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
大家可以用如下順序,看下用數組拔出在數據掩蓋上的效果
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent[1] = “student_one”; mapStudent[1] = “student_two”; mapStudent[2] = “student_three”; map<int, string>::iterator iter; for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
3. map的大小
在往map外面拔出了數據,我們怎樣知道以後曾經拔出了多多數據呢,可以用size函數,用法如下:
Int nSize = mapStudent.size();
4. 數據的遍歷
這裡也提供三種辦法,對map停止遍歷
第一種:使用前向迭代器,下面舉例順序中四處都是了,略過不表
第二種:使用反相迭代器,上面舉例闡明,要領會效果,請自個入手運轉順序
#include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(pair<int, string>(1, “student_one”)); mapStudent.insert(pair<int, string>(2, “student_two”)); mapStudent.insert(pair<int, string>(3, “student_three”)); map<int, string>::reverse_iterator iter; for(iter = mapStudent.rbegin(); iter != mapStudent.rend(); iter++) { Cout<<iter->first<<” ”<<iter->second<<end; } }
第三種:用數組方式,順序闡明如下
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(pair<int, string>(1, “student_one”)); mapStudent.insert(pair<int, string>(2, “student_two”)); mapStudent.insert(pair<int, string>(3, “student_three”)); int nSize = mapStudent.size() //此處有誤,應該是 for(int nIndex = 1; nIndex <= nSize; nIndex++) //by rainfish for(int nIndex = 0; nIndex < nSize; nIndex++) { Cout<<mapStudent[nIndex]<<end; } }
5. 數據的查找(包括斷定這個關鍵字能否在map中呈現)
在這裡我們將領會,map在數據拔出時保證有序的益處。
要斷定一個數據(關鍵字)能否在map中呈現的辦法比擬多,這裡標題雖然是數據的查找,在這裡將交叉著少量的map根本用法。
這裡給出三種數據查找辦法
第一種:用count函數來斷定關鍵字能否呈現,其缺陷是無法定位數據呈現地位,由於map的特性,一對一的映射關系,就決議了count函數的前往值只要兩個,要麼是0,要麼是1,呈現的狀況,當然是前往1了
第二種:用find函數來定位數據呈現地位,它前往的一個迭代器,當數據呈現時,它前往數據所在地位的迭代器,假如map中沒有要查找的數據,它前往的迭代器等於end函數前往的迭代器,順序闡明
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(pair<int, string>(1, “student_one”)); mapStudent.insert(pair<int, string>(2, “student_two”)); mapStudent.insert(pair<int, string>(3, “student_three”)); map<int, string>::iterator iter; iter = mapStudent.find(1); if(iter != mapStudent.end()) { Cout<<”Find, the value is ”<<iter->second<<endl; } Else { Cout<<”Do not Find”<<endl; } }
第三種:這個辦法用來斷定數據能否呈現,是顯得笨了點,但是,我計劃在這裡解說
Lower_bound函數用法,這個函數用來前往要查找關鍵字的下界(是一個迭代器)
Upper_bound函數用法,這個函數用來前往要查找關鍵字的上界(是一個迭代器)
例如:map中曾經拔出了1,2,3,4的話,假如lower_bound(2)的話,前往的2,而upper-bound(2)的話,前往的就是3
Equal_range函數前往一個pair,pair外面第一個變量是Lower_bound前往的迭代器,pair外面第二個迭代器是Upper_bound前往的迭代器,假如這兩個迭代器相等的話,則闡明map中不呈現這個關鍵字,順序闡明
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent[1] = “student_one”; mapStudent[3] = “student_three”; mapStudent[5] = “student_five”; map<int, string>::iterator iter; iter = mapStudent.lower_bound(2); { //前往的是下界3的迭代器 Cout<<iter->second<<endl; } iter = mapStudent.lower_bound(3); { //前往的是下界3的迭代器 Cout<<iter->second<<endl; } iter = mapStudent.upper_bound(2); { //前往的是上界3的迭代器 Cout<<iter->second<<endl; } iter = mapStudent.upper_bound(3); { //前往的是上界5的迭代器 Cout<<iter->second<<endl; } Pair<map<int, string>::iterator, map<int, string>::iterator> mapPair; mapPair = mapStudent.equal_range(2); if(mapPair.first == mapPair.second) { cout<<”Do not Find”<<endl; } Else { Cout<<”Find”<<endl; } mapPair = mapStudent.equal_range(3); if(mapPair.first == mapPair.second) { cout<<”Do not Find”<<endl; } Else { Cout<<”Find”<<endl; } }
6. 數據的清空與判空
清空map中的數據可以用clear()函數,斷定map中能否無數據可以用empty()函數,它前往true則闡明是空map
7. 數據的刪除
這裡要用到erase函數,它有三個重載了的函數,上面在例子中詳細闡明它們的用法
#include <map> #include <string> #include <iostream> Using namespace std; Int main() { Map<int, string> mapStudent; mapStudent.insert(pair<int, string>(1, “student_one”)); mapStudent.insert(pair<int, string>(2, “student_two”)); mapStudent.insert(pair<int, string>(3, “student_three”)); //假如你要演示輸入效果,請選擇以下的一種,你看到的效果會比擬好 //假如要刪除1,用迭代器刪除 map<int, string>::iterator iter; iter = mapStudent.find(1); mapStudent.erase(iter); //假如要刪除1,用關鍵字刪除 Int n = mapStudent.erase(1);//假如刪除了會前往1,否則前往0 //用迭代器,成片的刪除 //一下代碼把整個map清空 mapStudent.earse(mapStudent.begin(), mapStudent.end()); //成片刪除要留意的是,也是STL的特性,刪除區間是一個前閉後開的集合 //自個加上遍歷代碼,打印輸入吧 }
8. 其他一些函數用法
這裡有swap,key_comp,value_comp,get_allocator等函數,覺得到這些函數在編程用的不是很多,略過不表,有興味的話可以自個研討
9. 排序
這裡要講的是一點比擬深邃的用法了,排序問題,STL中默許是采用小於號來排序的,以上代碼在排序上是不存在任何問題的,由於下面的關鍵字是int型,它自身支持小於號運算,在一些特殊狀況,比方關鍵字是一個構造體,觸及到排序就會呈現問題,由於它沒有小於號操作,insert等函數在編譯的時分過不去,上面給出兩個辦法處理這個問題
第一種:小於號重載,順序舉例
#include <map> #include <string> Using namespace std; Typedef struct tagStudentInfo { Int nID; String strName; }StudentInfo, *PStudentInfo; //先生信息 Int main() { int nSize; //用先生信息映射分數 map<StudentInfo, int>mapStudent; map<StudentInfo, int>::iterator iter; StudentInfo studentInfo; studentInfo.nID = 1; studentInfo.strName = “student_one”; mapStudent.insert(pair<StudentInfo, int>(studentInfo, 90)); studentInfo.nID = 2; studentInfo.strName = “student_two”; mapStudent.insert(pair<StudentInfo, int>(studentInfo, 80)); for (iter=mapStudent.begin(); iter!=mapStudent.end(); iter++) cout<<iter->first.nID<<endl<<iter->first.strName<<endl<<iter->second<<endl; }
以上順序是無法編譯經過的,只需重載小於號,就OK了,如下:
Typedef struct tagStudentInfo { Int nID; String strName; Bool operator < (tagStudentInfo const& _A) const { //這個函數指定排序戰略,按nID排序,假如nID相等的話,按strName排序 If(nID < _A.nID) return true; If(nID == _A.nID) return strName.compare(_A.strName) < 0; Return false; } }StudentInfo, *PStudentInfo; //先生信息
第二種:仿函數的使用,這個時分構造體中沒有直接的小於號重載,順序闡明
#include <map> #include <string> Using namespace std; Typedef struct tagStudentInfo { Int nID; String strName; }StudentInfo, *PStudentInfo; //先生信息 Classs sort { Public: Bool operator() (StudentInfo const &_A, StudentInfo const &_B) const { If(_A.nID < _B.nID) return true; If(_A.nID == _B.nID) return _A.strName.compare(_B.strName) < 0; Return false; } }; Int main() { //用先生信息映射分數 Map<StudentInfo, int, sort>mapStudent; StudentInfo studentInfo; studentInfo.nID = 1; studentInfo.strName = “student_one”; mapStudent.insert(pair<StudentInfo, int>(studentInfo, 90)); studentInfo.nID = 2; studentInfo.strName = “student_two”; mapStudent.insert(pair<StudentInfo, int>(studentInfo, 80)); }
10. 另外
由於STL是一個一致的全體,map的很多用法都和STL中其它的東西結合在一同,比方在排序上,這裡默許用的是小於號,即less<>,假如要從大到小排序呢,這裡觸及到的東西很多,在此無法逐個加以闡明。
還要闡明的是,map中由於它外部有序,由紅黑樹保證,因而很多函數執行的時間復雜度都是log2N的,假如用map函數可以完成的功用,而STL Algorithm也可以完成該功用,建議用map自帶函數,效率高一些。
上面說下,map在空間上的特性,否則,估量你用起來會有時分表現的比擬郁悶,由於map的每個數據對應紅黑樹上的一個節點,這個節點在不保管你的數據時,是占用16個字節的,一個父節點指針,左右孩子指針,還有一個枚舉值(標示紅黑的,相當於均衡二叉樹中的均衡因子),我想大家應該知道,這些中央很費內存了吧,不說了……
以上就是為大家帶來的淺談c++中的stl中的map用法詳解全部內容了,希望大家多多支持~