stl map C 中的STL中map用法詳解

2021-08-29 18:31:26 字數 3545 閱讀 5537

map內部資料的組織,map內部自建一顆紅黑樹(一 種非嚴格意義上的平衡二叉樹),這顆樹具有對資料自動排序的功能,所以在map內部所有的資料都是有序的,後邊我們會見識到有序的好處。

1、map簡介

map的特點是增加和刪除節點對迭代器的影響很小,除了那個操作節點,對其他的節點都沒有什麼影響。

對於迭代器來說,可以修改實值,而不能修改key。

2、map的功能

根據key值快速查詢記錄,查詢的複雜度基本是log(n),如果有1000個記錄,最多查詢10次(2^10),1,000,000個記錄,最多查詢20次。

快速插入key -value 記錄。

快速刪除記錄

根據key 修改value記錄。

遍歷所有記錄。

3、使用map

#include //注意,stl標頭檔案沒有副檔名.h

map物件是模板類,需要關鍵字和儲存物件兩個模板引數:

std:map<int,string> personnel;

這樣就定義了乙個用int作為索引,並擁有相關聯的指向string的指標.

為了使用方便,可以對模板類進行一下型別定義,

typedefmap<int,cstring> udt_map_int_cstring;

udt_map_int_cstring enummap;

4、       map的建構函式

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

mapmapstudent;

5、     資料的插入

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

下面舉例說明(遮蔽4786警告 #pragma warning (disable:4786) )

第一種:用insert函式插入pair資料

第二種:用insert函式插入value_type資料,

第三種:用陣列方式插入資料

下面舉例說明

//資料的插入--第一種:用insert函式插入pair資料

#include #include #include using namespace std;

int main()

{ mapmapstudent;

mapstudent.insert(pair(1, "student_one")); //第1種插入方式

mapstudent.insert(make_pair(1, "student_one")); //第1種插入方式

mapstudent.insert(map::value_type (2, "student_two")); //第2種插入方式

mapstudent[3] = "student_three"; //第3種插入方式(會覆蓋已經存在的)

map::iterator iter;

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

coutinsert,可以用pair來獲得是否插入成功,程式如下

//構造定義,返回乙個pair物件

pairinsert (const value_type& val);

pair::iterator, bool> insert_pair;

insert_pair = mapstudent.insert(map::value_type (001, "student_one"));

if(!insert_pair.second)

cout << ""error insert new element" << endl;

6、      map的大小

在往map裡面插入了資料,我們怎麼知道當前已經插入了多少資料呢,可以用size函式,用法如下:

int nsize = mapstudent.size();

7, 查詢元素

當所查詢的關鍵key出現時,它返回資料所在物件的位置,如果沒有,返回iter與end函式的值相同。

// find 返回迭代器指向當前查詢元素的位置否則返回map::end()位置

map::iterator iter;

iter = mapstudent.find("123");

if(iter != mapstudent.end())

cout<<"find, the value is"8, 刪除與清空元素

//迭代器刪除

map::iterator iter;

iter = mapstudent.find("123");

mapstudent.erase(iter);

//用關鍵字刪除

int n = mapstudent.erase("123"); //如果刪除了會返回1,否則返回0

//用迭代器範圍刪除 : 把整個map清空

mapstudent.erase(mapstudent.begin(), mapstudent.end());

//等同於mapstudent.clear()

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的函式

javascript實現java中的map

map.js function map linkitems 獲取當前map return 當前物件 map.noop function 非法操作 return map.illegal function param obj param foreignkeys return map.from funct...

STL中的型別

一 常整數對映為型別 alexandrescu提出的簡單而有用的template template struct int2type enum template class niftycontainer private void dosomething t pobj,int2type t pnewob...

STL中vector list deque的區別

向量 相當於乙個陣列 在記憶體中分配一塊連續的記憶體空間進行儲存。支援不指定vector大小的儲存。stl內部實現時,首先分配乙個非常大的記憶體空間預備進行儲存,即capacituy 函式返回的大小,當超過此分配的空間時再整體重新放分配一塊記憶體儲存,這給人以vector可以不指定vector即乙個...