map 컨테이너는 연관 컨테이너 중 자주 사용하는 컨테이너로 원소를 key와 value의 쌍으로 저장합니다.

map 컨테이너는 set 컨테이너 처럼 원소의 key는 컨테이너에 중복 저장 될 수 없습니다.

 

map의 원소는 pair 객체로 저장되며 pair 객체의 first 멤버변수는 key로 second 멤버 변수는 value 입니다.

 

map 컨테이너는 insert() 멤버함수와 []연산자를 통해서 원소를 추가 할 수 있습니다.

 

 

[ map의 insert() 멤버 함수 ]

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include <map>
 
using namespace std;
 
int main(){
 
    // key, value 모두 정수형인 컨테이너 생성
    // 기본 정렬 기준 less
    map<intint> m;
 
    m.insert(pair<intint>(5,100)); // 임시 pair객체 생성후 저장
    m.insert(pair<intint>(3,100));
    m.insert(pair<intint>(8,30));
    m.insert(pair<intint>(4,40));
    m.insert(pair<intint>(1,70));
    m.insert(pair<intint>(7,100));    
 
    // pr 객체 생성후 저장
    pair<intint> pr(9, 50);
    m.insert(pr);
 
    map<intint>::iterator Iter;
    for( Iter = m.begin(); Iter != m.end(); ++Iter ){
 
        cout<<"Key : "<<(*Iter).first<<", Value : "<<(*Iter).second<<endl;
    }
    cout<<endl;
 
 
    // 반복자는 -> 연산자가 연산자 오버로딩되어 있으므로 
    // 포인터처럼 멤버를 -> 연산자로 접근할 수 있습니다.
    for( Iter = m.begin(); Iter != m.end(); ++Iter ){
        cout<<"("<<Iter->first<<","<<Iter->second<<")"<<" ";
    }
    cout<<endl;
 
    // 삽입 성공 여부를 나타내는 pair객체를 리턴하는 insert() 멤버함수
    pair<map<intint>::iterator, bool > s_pr;
    s_pr = m.insert(pair<intint>(5, 200)); // 키 값이 저장되어있기때문에 실패!!
 
                                             // 성공시 저장된 위치의 반복자 리턴
                                             // 실패한다면 이전에 저장된 원소의 반복자 리턴
    if( s_pr.second ){
        cout<< "Key : " << s_pr.first->first << ", Value : "
            <<s_pr.first->second<<" 저장"<<endl;
    }else{
        cout<<"키값이 중복되어 삽입 실패!"<<endl;
    }
 
    system ("pause");
    return 0;
}

 

 

insert() 멤버함수는 pair객체를 인자로 받아 map의 원소인 key와 value의 쌍을 저장합니다.

 

 

[ map의 [] 연산자 ]

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <iostream>
#include <map>
using namespace std;
 
int main(){
 
    map<intint> m;
 
    m[5] = 100; // key 5, value 100의 원소를 m에 삽입한다.
    m[3] = 100;
    m[8] = 30;
    m[4] = 40;
    m[1] = 70;
    m[7] = 100;
    m[9] = 50;
 
    map<intint>::iterator Iter;
    for( Iter = m.begin(); Iter != m.end(); ++Iter ){
        cout<<"["<<Iter->first<<","<<Iter->second<<"]"<<" ";
    }
    cout<<endl;
 
    m[5] = 200; // key 5의 value를 200으로 갱신한다.
 
    for( Iter = m.begin(); Iter != m.end(); ++Iter ){
        cout<<"["<<Iter->first<<","<<Iter->second<<"]"<<" ";
    }
    cout<<endl;
 
    system("pause");
    return 0;
}

 

 

map의 [] 연산자를 사용하여 쉽게 원소(key, value)를 추가하거나 value값을 갱신 할 수 있습니다.

 

key에 해당하는 원소가 map에 없다면 추가 연산

key에 해당하는 원소가 map에 있다면 원소의 value를 갱신

 

 

[ map 컨테이너의 정렬 기준 조건자 greater ]

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <iostream>
#include <string>
#include <map>
using namespace std;
 
int main(){
 
    // greater 정렬 기준의 key:int, value:string 타임의 컨테이너 m생성
    map<int, string, greater<int>> m;
 
    m[5] = "five"//원소 추가
    m[3] = "three";
    m[8] = "eight";
    m[4] = "four";
    m[1] = "one";
    m[7] = "seven";
    m[9] = "nine";
 
    map<int, string, greater<int>>::iterator Iter;
    for( Iter = m.begin(); Iter != m.end(); ++Iter ){
        cout<<"["<<Iter->first<<","<<Iter->second<<"]"<<" ";
    }
    cout<<endl;
    
    system("pause");
    return 0;
}

 

 

[ map의 find(), lower_bound(), upper_bound(), equal_range() ]

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <iostream>
#include <map>
using namespace std;
 
int main(){
 
    map<intint> m;
 
    m[5] = 100;
    m[3] = 100;
    m[8] = 30;
    m[4] = 40;
    m[1] = 70;
    m[7] = 100;
    m[9] = 50;
 
    map<intint>::iterator Iter;
 
    // find() 멤버 함수 사용 key값 5의 해당하는 위치의 반복자 리턴
    Iter = m.find( 5 );
 
    if( Iter != m.end() ){ //찾았으면 해당위치 반복자, 실패면, end()
        cout<< "key " << "[" << Iter->first << "]" <<" 의 value값 : "<< Iter->second <<endl;
    }
 
 
 
    // lower_bound(), upper_bound() 함수 사용 순차열 구간 확인
    map<intint>::iterator Iter_lower;
    map<intint>::iterator Iter_upper;
    Iter_lower = m.lower_bound( 5 );
    Iter_upper = m.upper_bound( 5 );
 
    for( Iter = Iter_lower; Iter != Iter_upper; ++Iter ){
        cout<<"구간[lower_bound(), upper_bound()) 의 순차열, 원소값"
            <<"("<<Iter->first<<","<<Iter->second<<")"<<" "// (5, 100)
    }
    cout<<endl;
 
 
 
    // equal_range() 멤버 함수사용, pair 객체 리턴
    pair< map<intint>::iterator, map<intint>::iterator > pr;
    pr = m.equal_range( 5 );
 
    for( Iter = pr.first; Iter != pr.second; ++Iter ){
        cout<<"구간[pr.first, pr.second) 의 순차열, 원소값"
            <<"("<<Iter->first<<","<<Iter->second<<")"<<" "// (5, 100)
    }
    cout<<endl;
 
 
    system("pause");
    return 0;
}

 

+ Recent posts