|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
1.map的构造函数
1 g% _( v, L2 q# U/ C: c+ S9 z- ?Map<int, string> mapStudent;
0 g) j# z/ D% K' }7 q2. 数据的插入: K2 Z/ F% Y+ Q0 H. _2 d3 M( n* Z
在构造map容器后0 D( C( j9 V6 s+ J3 |" u' Z' q
第一种:用insert函数插入pair数据
+ k& J6 `1 G' D0 b I$ [' s9 [#pragma warning (disable:4786) )
& N) [2 F9 M/ _: h#include <map>
2 d) w3 H) \9 s" _#include <string>6 M2 ?/ p# Q+ S5 B& ] F; c" ~
#include <iostream>+ n& z, k* N4 X/ R% I
Using namespace std;
7 t- H% P( {4 Q$ dInt main()
. ]+ G+ Y: U% G: q5 j0 a5 v{
9 ?3 B$ }; v. @ Map<int, string> mapStudent;) M1 U T! Q. {! C( ^
mapStudent.insert(pair<int, string>(1, “student_one”));. @* A* v/ U7 p; x, D
mapStudent.insert(pair<int, string>(2, “student_two”));7 _) h/ V6 f2 S x. s+ F3 H
mapStudent.insert(pair<int, string>(3, “student_three”));
! w: K3 W* J2 a+ K- N2 b" o: I) E map<int, string>::iterator iter;
# R0 Y2 n6 O8 u% U3 _8 r+ o/ \- I for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)# `" [; y1 V# Z. [6 V" o* L2 O
{' V! T" B2 k2 r1 O* T2 o& h/ p
Cout<<iter->first<<” ”<<iter->second<<end;
( ?8 ~% N$ F7 K" C4 }8 c}- {' {: V/ `0 u0 I' ?
}* O8 s* E% w+ j" B
第二种:用insert函数插入value_type数据,下面举例说明. J6 G. I' Q% h7 n2 X5 i; r
#include <map>+ U4 R0 G I1 p' R
#include <string>
6 u% Y1 U# w }) p; m J. f#include <iostream>, i8 G/ s- C6 s6 @
Using namespace std;
7 y) {* [4 i: |3 vInt main()
, A9 W9 N5 A8 E7 t* p( V{
# P6 a7 L c. c& u1 V% c7 ~ Map<int, string> mapStudent;! C8 |0 t" c4 [$ P, ?1 S
mapStudent.insert(map<int, string>::value_type (1, “student_one”));
. w2 M3 l* T( E- [, x mapStudent.insert(map<int, string>::value_type (2, “student_two”));
) ^5 R, b# g6 s mapStudent.insert(map<int, string>::value_type (3, “student_three”));! V4 ^; F4 ~0 f" j9 u$ }5 H+ I
map<int, string>::iterator iter;
5 M" d; ~" n4 R for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
4 n; L( {4 K" A{
u. }; A a# a! c% z Cout<<iter->first<<” ”<<iter->second<<end;8 f2 z+ k- _0 d
}
1 j2 C t6 d2 V$ U" l( K4 i}
( }' F& Z( Y- n, X) ~& A6 ]6 ]第三种:用数组方式插入数据,下面举例说明$ @2 Q5 H- Q; r' O; L7 \7 U
#include <map>2 M: X# q. p( | ]; a) L
#include <string>
6 A0 w' K8 @. W: Y#include <iostream>& Q1 l" E5 Q) @6 C$ Z& D
Using namespace std;& e' v4 T. z/ X" Q: d$ t
Int main(). M; Q, U: y" G/ Q6 Y
{; b; F$ N: l2 U2 }; _
Map<int, string> mapStudent;+ ]0 C( U4 }2 j) J: M
mapStudent[1] = “student_one”;
! j1 U- |- e6 A/ s7 @ mapStudent[2] = “student_two”;/ x0 {$ B |$ d
mapStudent[3] = “student_three”;
0 G! m+ x4 {7 ~4 w) l map<int, string>::iterator iter;
5 c( _' m4 C) J. O' r! z* C for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++)
+ k3 ^: |$ c# |: _. h{$ @8 N. o$ D9 @4 Y8 Q7 x( @* p( o
Cout<<iter->first<<” ”<<iter->second<<end;" d1 c2 C8 b; C) Z( B
}$ {1 C/ V! H% f4 x0 d
}
3 e0 b G& E/ z0 N2 G$ y6 \7 g( H以上三种用法,虽然都可以实现数据的插入,但是它们是有区别的,当然了第一种和第二种在效果上是完成一样的,用insert函数插入数据,在数据的插入上涉及到集合的唯一性这个概念,即当map中有这个关键字时,insert操作是插入数据不了的,但是用数组方式就不同了,它可以覆盖以前该关键字对应的值,用程序说明3 E8 B1 Y/ `$ f$ S
mapStudent.insert(map<int, string>::value_type (1, “student_one”));. K7 x, s2 _. B
mapStudent.insert(map<int, string>::value_type (1, “student_two”));
: J5 ^9 \# J. Y( U& N& N% y上面这两条语句执行后,map中1这个关键字对应的值是“student_one”,第二条语句并没有生效,那么这就涉及到我们怎么知道insert语句是否插入成功的问题了,可以用pair来获得是否插入成功,程序如下
/ k' X# W4 B( |7 U& k0 H& dPair<map<int, string>::iterator, bool> Insert_Pair;
& q6 `/ `- X$ V' F3 F- tInsert_Pair = mapStudent.insert(map<int, string>::value_type (1, “student_one”));" D& c& e0 j8 j9 a3 w2 f
我们通过pair的第二个变量来知道是否插入成功,它的第一个变量返回的是一个map的迭代器,如果插入成功的话Insert_Pair.second应该是true的,否则为false。
0 p! e9 t0 j2 H: }) g下面给出完成代码,演示插入成功与否问题
) a, q/ R# K4 a#include <map>8 ]+ _, q% Y3 S2 t% N
#include <string>
% w3 Y+ k1 @5 j4 s; y1 O#include <iostream>% f$ x, F: U; ^ R8 |
Using namespace std;
/ }4 D' D! T FInt main()* s% O4 b6 L8 t4 \1 |
{
) _. i+ R7 v( [2 N* E Map<int, string> mapStudent;. g' l: Z0 ?* F1 j1 |. L
Pair<map<int, string>::iterator, bool> Insert_Pair;4 j: M: O1 k) }( l$ j4 L7 i3 ~
Insert_Pair = mapStudent.insert(pair<int, string>(1, “student_one”));" ^7 f! k2 U0 x; V( A( @' o9 b& D, z
If(Insert_Pair.second == true)1 R8 A% X8 d( n4 I7 Z4 M" j
{
% ?- N/ t1 B. o2 D0 h% g' w% \" s Cout<<”Insert Successfully”<<endl;
6 Z8 t* P% }, _2 b3 O }! F+ k! G$ f0 w( u5 a
Else
6 T* ?+ z: p! b# [4 }9 ~ {
. p/ p- A8 @& b0 O: a# c Cout<<”Insert Failure”<<endl;$ p& z F* @& N: ]' s- c" _* B
}# P5 f j( y7 u8 |1 {
|
|