Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자료구조
- arduino compiler
- Algorithm
- stl
- C언어
- LineTracer
- 아두이노 소스
- map
- Deque
- list
- c++
- vector
- 아두이노 컴파일러
- priority_queue
- WinAPI
- Visual Micro
- 시스템프로그래밍
- 아두이노
- 운영체제
- 통계학
- html
- Array
- Arduino
- directx
- 수광 소자
- queue
- 컴퓨터 그래픽스
- Stack
- 라인트레이서
- set
Archives
- Today
- Total
Kim's Programming
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 | #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"; std::map<int, std::string> Map2; Map[3] = "Third"; Map[4] = "Fourth"; print(Map); Map.insert(Map2.begin(), Map2.end()); print(Map); Map.insert(std::pair<int,std::string>(9,"nineth")); print(Map); Map.insert(Map.begin(),std::pair<int, std::string>(5, "fifth")); print(Map); } | cs |
내용)
insert()함수는 파라메터에 따라 다른기능을 합니다.
- insert(x,y) (26번)
이터레이터 x가 가리키는 곳 부터 이터레이터 y가 가리키는 곳 사이에 있는 데이터들을 삽입합니다. - insert(x) (28번)
pair x를 삽입합니다. - insert(x,y) (30번)
이터레이터 x가 가리키는 위치에 pair y를 삽입합니다.
결과)
'STL - Container > Container - Map' 카테고리의 다른 글
Map - lower_bound() (0) | 2016.02.01 |
---|---|
Map - key_comp() (0) | 2016.02.01 |
Map - find() (0) | 2016.02.01 |
Map - erase() (0) | 2016.02.01 |
Map - equal_range() (0) | 2016.02.01 |