관리 메뉴

Kim's Programming

Map - erase() 본문

STL - Container/Container - Map

Map - erase()

Programmer. 2016. 2. 1. 07:55

소스)


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
#include<iostream>
#include<string>
#include<map>
 
void print(std::map<int, std::string> Target_Map)
{
    for (std::map<int, std::string>::iterator IterPos = Target_Map.begin(); IterPos != Target_Map.end(); ++IterPos)
        std::cout << "Key->" << IterPos->first << ", Value->" << IterPos->second << "   ";
    std::cout << std::endl;
}
void print(std::pair<int, std::string> Target_Pair)
{
    std::cout << Target_Pair.first << "  " << Target_Pair.second << std::endl;
}
void main()
{
    std::map<int, std::string> Map;
    Map[1= "First";
    Map[2= "Second";
    Map[3= "Third";
    Map[4= "Fourth";
 
    print(Map);
    Map.erase(2);
    print(Map);
    Map.erase(Map.begin());
    print(Map);
    Map.erase(Map.begin(), Map.end());
    print(Map);
}
cs


내용)


erase()함수는 파라메터에 따라서 다른기능을 합니다.


      1. erase(x)

        키값이 x인 요소를 찾아서 삭제합니다.

      2. erase(x)

        이터레이터 x가 가리키는 위치의 데이터를 삭제합니다.

      3. erase(x,y)

        이터레이터 x 가리키는 곳과 이터레이터 y가 가리키는 곳 사이의 데이터들을 삭제합니다.


결과)




'STL - Container > Container - Map' 카테고리의 다른 글

Map - insert()  (0) 2016.02.01
Map - find()  (0) 2016.02.01
Map - equal_range()  (0) 2016.02.01
Map - end()  (0) 2016.02.01
Map - empty()  (0) 2016.02.01