请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
最全的c++map的用法此文是复制来的0.0 1. map最基本的构造函数;. d8 m5 x5 s0 `* K
map<string ,int>mapstring; map<int,string >mapint;
6 e9 e+ o8 x N2 z" Ymap<sring,char>mapstring; map< char ,string>mapchar;
. I1 M4 u2 C6 P4 omap<char,int>mapchar; map<int ,char>mapint; 2. map添加数据; map<int ,string>maplive;
4 _8 O m( D j6 S- y3 b% B) `/ K1. maplive.insert(pair<int,string>(102,"aclive"));
) S5 J! }& B7 V' B7 Z2. maplive.insert(map<int,string>::value_type(321,"hai"));
" [6 z5 S3 f! u& v8 k: T3. maplive[112]="April";//map中最简单最常用的插入添加!
; B: a! B: u8 p/ X7 ?! L 3. map中元素的查找: find()函数返回一个迭代器指向键值为key的元素,如果没找到就返回指向map尾部的迭代器。 map<int ,string >::iteratorl_it;; $ s+ ^$ ~; s! r/ D1 v g
l_it=maplive.find(112);//返回的是一个指针
. i0 {, m4 S% s* c8 S$ a4 bif(l_it==maplive.end())
) e3 z E- a4 ]. A0 S$ k( l2 Tcout<<"we do not find112"<<endl;/ M1 L& D# T, c5 L; U# s
elsecout<<"wo find112"<<endl;
, ~6 |2 p* q; V4 ]$ J
$ }* F! Y2 i5 f) \6 n" y" `map<string,string>m; if(m[112]=="") cout<<"we do not find112"<<endl;& I1 s8 ^1 j* h# b0 h) h
4. map中元素的删除:
; ^, {) J _; Q& }0 V如果删除112;
5 T4 k7 Q; R, f |. _1 @( Ymap<int ,string>::iterator l_it;;
L7 T) b0 t, m. kl_it =maplive.find(112);
- j! B% z( Z5 C/ O1 \if( l_it == maplive.end())- [9 M# W+ Z' b/ G4 s6 A
cout<<"we do not find112"<<endl;- y6 |' k2 K2 U" w- t% B
else maplive.erase(l_it);//delete 112;
' W3 t1 l }$ h* p$ s8 g 5. map中 swap的用法:; O5 m2 I+ l+ ^0 B6 S% U
Map中的swap不是一个容器中的元素交换,而是两个容器交换;
* b a8 N; D! x" cFor example:1 C2 `2 p7 M, n# W& M5 B
#include<map>
/ C0 i% x# k! D; n M f; B#include<iostream> usingnamespace std; int main()
0 J! }7 j& f& I4 h# i{! F: y% ?- Z6 ^$ K4 s5 ?
map <int, int> m1, m2, m3;
! w" s% }, y, t1 \' W% j5 k$ tmap <int,int>::iterator m1_Iter; m1.insert( pair <int, int>(1, 10 ) );
( a8 O, u, A, J8 i( Rm1.insert ( pair <int,int> ( 2, 20 ) );
: l5 r9 h! ?8 {& A9 j( Om1.insert ( pair <int,int> ( 3, 30 ) );7 `& C& ~' z7 j- j- x) s- W; k: x. ?* h
m2.insert ( pair <int,int> ( 10, 100 ) );$ r; D, X" I6 E. j) ]* U% S) P* r( P
m2.insert ( pair <int,int> ( 20, 200 ) );
5 h# m- p1 g3 O$ O% H7 Tm3.insert ( pair <int,int> ( 30, 300 ) ); cout << "The original map m1is:";2 u3 n. Q( G% O% V( ~
for ( m1_Iter = m1.begin( ) ; m1_Iter != m1.end() ; m1_Iter++ )
# `1 j1 d3 D. ]2 `& N! t" M2 Pcout << " "<<m1_Iter->second;
% T% ]$ n3 T( ^/ J* ycout << "."<< endl; // This isthe member function version of swap X. V6 s- n( M
// m2 is said to be theargument map; m1 the target map
: L! l4 V# d, W6 wm1.swap( m2); cout << "Afterswapping with m2, map m1 is:";
; T0 ?- @& M. A* [( \( h9 cfor ( m1_Iter = m1.begin( ) ; m1_Iter != m1.end() ; m1_Iter++ )
: D4 Z, w/ Y) u5 V. q1 l! x- f c! K/ Lcout << " "<< m1_Iter ->second; Z, p- \' K. t+ C
cout << "."<< endl;
2 D1 v: W, K& D) h. h' g) dcout << "After swapping with m2, mapm2 is:";
& _* B% b" _* { t7 qfor ( m1_Iter = m2.begin( ); m1_Iter != m2.end(); m1_Iter++ )
. V& p5 c6 S0 Fcout << " "<< m1_Iter ->second;
9 k& k: p" f& ?" `: m# Wcout << "."<< endl;
1 E" U; u" D" _// This is the specialized template version of swap
; c: _" f4 ^, F4 Vswap( m1, m3 );
cout << "Afterswapping with m3, map m1 is:";
! x( Q4 b. L h Gfor ( m1_Iter = m1.begin( ); m1_Iter != m1.end(); m1_Iter++ )$ Y! u; D4 b* _6 ?, T% ?
cout << " "<< m1_Iter ->second;
: Q2 s+ D6 d, \7 X( `8 `, pcout << "."<< endl;5 _9 @2 l, N: H# @+ ], `! V7 h
} 6. map的sort问题:
" q- z: I& ]+ e7 ~. K6 w- xMap中的元素是自动按key升序排序,所以不能对map用sort函数:
" Z9 o% _1 z# f h* KFor example:
/ C/ d" o, Y) H8 s, f( b#include<map>: k' d0 O h- d* F) }& ~- J1 R x
#include<iostream> usingnamespace std; int main( )
, T$ L" @5 j( p$ ~3 l9 ? W `- H{) z1 L2 c3 X( I
map<int, int> m1;, G: h7 E$ O4 a/ G
map <int,int>::iterator m1_Iter; m1.insert (pair <int, int> (1, 20 ) );
/ r/ A* O6 H$ ^6 Z) a7 n( Bm1.insert ( pair<int, int> ( 4, 40) );
w* h5 C. `9 H% P3 C' im1.insert ( pair<int, int> ( 3, 60) );8 y* N0 y- l' Q' i8 R$ E
m1.insert ( pair<int, int> ( 2, 50) );
, a: W& h7 o- Em1.insert ( pair<int, int> ( 6, 40) );& B, k8 b% y& g2 G+ v4 G9 i6 J4 B/ v
m1.insert ( pair<int, int> ( 7, 30) ); cout<< "The original map m1is:"<<endl;9 Q) k( C C+ v# J1 H
for ( m1_Iter = m1.begin( );m1_Iter != m1.end( ); m1_Iter++ )# u( M) P( ]& d' I6 D
cout << m1_Iter->first<<""<<m1_Iter->second<<endl;
& r2 X4 B: H! r" F& p" A* J4 I6 w
5 k# n1 j/ o' K& L}1 f5 X/ p6 q8 Q$ n6 m; h
The original map m1 is:
) l' N( J, @* \" A% I, ~9 ]4 B1 20! i- v* C- j6 B% _ H5 l# a$ D
2 50/ j- Y2 \4 q- x# G" y
3 60
! |, T+ A; h! b1 l& x o" i- L4 40
) j$ t* \5 I+ I O6 h& F% p6 40' P: t1 n' P/ i, M* D$ @
7 30 7. map的基本操作函数:
- \; ?; Q+ r2 O: W" qC++Maps 是一种关联式容器,包含“关键字/值”对' S0 z2 j: N8 l- X1 ^$ t# ^
begin() 返回指向map头部的迭代器
- ?+ {% w4 b5 {5 ?: Iclear() 删除所有元素
( i2 V! j& S) L: Gcount() 返回指定元素出现的次数; d+ Q. G& Y. W& [1 J! k' _
empty() 如果map为空则返回true; H" I5 x. U j0 B, K
end() 返回指向map末尾的迭代器( K/ u1 ~1 R+ K% c% a) X( ?& R8 J
equal_range() 返回特殊条目的迭代器对
$ M5 H9 k% F$ w Q) `erase() 删除一个元素* e1 L) @% X5 e
find() 查找一个元素
3 b6 Y0 l3 K B& H: O* Fget_allocator() 返回map的配置器
% p2 l; g% |: P! K+ @7 p) }. T6 sinsert() 插入元素' W; h0 F V8 ^ W7 k
key_comp() 返回比较元素key的函数
2 t4 d' H+ t3 ` b: ` j0 Mlower_bound() 返回键值>=给定元素的第一个位置* P+ w1 O" I* K) v+ @
max_size() 返回可以容纳的最大元素个数/ d D9 L# W1 m/ h5 }% x0 k2 q: ?
rbegin() 返回一个指向map尾部的逆向迭代器
, G. b: v9 N% prend() 返回一个指向map头部的逆向迭代器% U, G8 P: b4 e; O z# K( r2 p
size() 返回map中元素的个数) O( K4 q7 V- S" Q, U2 H0 m
swap() 交换两个map- r0 R$ I# ^( i; r* z! y! i
upper_bound() 返回键值>给定元素的第一个位置2 C) N, [3 I7 Z$ R6 g0 z
value_comp() 返回比较元素value的函数
: B/ t# `" L3 W8 N3 }2 d% A |