STL中map用法學習

2021-09-12 02:34:51 字數 1781 閱讀 8326

map是stl的乙個關聯容器,它提供一對一(其中第乙個可以稱為關鍵字,每個關鍵字只能在map**現一次,第二個可能稱為該關鍵字的值)的資料處理能力,由於這個特性,它完成有可能在我們處理一對一資料的時候,在程式設計上提供快速通道。這裡說下map內部資料的組織,map內部自建一顆紅黑樹(一種非嚴格意義上的平衡二叉樹),這顆樹具有對資料自動排序的功能,所以在map內部所有的資料都是有序的,後邊我們會見識到有序的好處。

下面舉例說明什麼是一對一的資料對映。比如乙個班級中,每個學生的學號跟他的姓名就存在著一一對映的關係,這個模型用map可能輕易描述,很明顯學號用int描述,姓名用字串描述(本篇文章中不用char *來描述字串,而是採用stl中string來描述),下面給出map描述**:

mapmapstudent;

map的建構函式

map共提供了6個建構函式,這塊涉及到記憶體分配器這些東西,略過不表,在下面我們將接觸到一些map的構造方法,這裡要說下的就是,我們通常用如下方法構造乙個map:

mapmapstudent;
資料的插入

在構造map容器後,我們就可以往裡面插入資料了。這裡講三種插入資料的方法:

第一種:用insert函式插入pair資料,下面舉例說明(以下**雖然是隨手寫的,應該可以在vc和gcc下編譯通過,大家可以執行下看什麼效果,在vc下**入這條語句,遮蔽4786警告 #pragma warning (disable:4786) )

#include#include#include#include#includeusing namespace std;

int main()

{ mapm;

m.insert(pair(1, "one"));

m.insert(pair(2, "two"));

m.insert(pair(3, "three"));

map::iterator iter;

for(iter = m.begin(); iter != m.end(); iter++)

{ cout#include #include #include using namespace std;

int main()

{ mapmapstudent;

mapstudent.insert(map::value_type (1, 「student_one」));

mapstudent.insert(map::value_type (2, 「student_two」));

mapstudent.insert(map::value_type (3, 「student_three」));

map::iterator iter;

for(iter = mapstudent.begin(); iter != mapstudent.end(); iter++)

{ cout#include #include #include using namespace std;

int main()

{ mapmapstudent;

mapstudent[1] = 「student_one」;

mapstudent[2] = 「student_two」;

mapstudent[3] = 「student_three」;

map::iterator iter;

for(iter = mapstudent.begin(); iter != mapstudent.end(); iter++)

{ cout

STL中map用法詳解

map是stl的乙個關聯容器,它提供一對一 其中第乙個可以稱為關鍵字,每個關鍵字只能在 map中出現一次,第二個可能稱為該關鍵字的值 的資料處理能力,由於這個特性,它完成有可能在我們處理一對一資料的時候,在程式設計上提供快速通道。這裡說 下map內部資料的組織,map內部自建一顆紅黑樹 一種非嚴格意...

STL中map用法詳解

說明 如果你具備一定的c template知識,即使你沒有接觸過stl,這個文章你也應該可能較輕易的看懂。本人水平有限,不當之處,望大家輔正。一 map概述 map是stl的乙個關聯容器,它提供一對一 其中第乙個可以稱為關鍵字,每個關鍵字只能在map中出現一次,第二個可能稱為該關鍵字的值 的資料處理...

STL 中 map 的用法

說明 如果你具備一定的 c template知識,即使你沒有接觸過stl,這個文章你也應該可能較輕易的看懂。本人水平有限,不當之處,望大家輔正。一 map概述 map是stl的乙個關聯容器,它提供一對一 其中第乙個可以稱為關鍵字,每個關鍵字只能在map中出現一次,第二個可能稱為該關鍵字的值 的資料處...