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
- Algorithm
- list
- Arduino
- set
- 아두이노
- Stack
- C언어
- 자료구조
- priority_queue
- 시스템프로그래밍
- LineTracer
- 라인트레이서
- Array
- 수광 소자
- directx
- 아두이노 소스
- vector
- 컴퓨터 그래픽스
- html
- WinAPI
- map
- 아두이노 컴파일러
- 통계학
- 운영체제
- c++
- queue
- Visual Micro
- arduino compiler
- stl
- Deque
Archives
- Today
- Total
Kim's Programming
List - insert() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include<list> #include<iostream> void print(std::list<int> Target_List) { for (std::list<int>::iterator IterPos = Target_List.begin(); IterPos != Target_List.end(); ++IterPos) std::cout << *IterPos << " "; std::cout << std::endl; } void main() { std::list<int> List = { 1,2,3,4,100,101,102,103 }; std::list<int> List_Copy = { 4,3,2,1 }; std::list<int>List_Copy2 = { 0,0,0 }; print(List); List.insert(List.begin(),++List_Copy.begin(), List_Copy.end()); print(List); List.insert(List.begin(), 4, 3); print(List); List.insert(List.begin(), 1234); print(List); } | cs |
내용)
insert()함수는 삽입을 하는 함수입니다. 파라메터에 따라서 다른 기능을 합니다.
- insert(x,y,z) (17번)
이터레이터 x가 가리키는 위치에 이터레이터 y와 z사이의 모든값을 삽입합니다. - insert(x,y,z) (19번)
이터레이터 x가 가리키는 위치에 y개의 z를 삽입합니다. - insert(x,y) (21번)
이터레이터 x가 가리키는 위치에 y를 삽입합니다.
결과)
'STL - Container > Container - List' 카테고리의 다른 글
List - merge() (0) | 2016.01.29 |
---|---|
List - max_size() (0) | 2016.01.29 |
List - front() (0) | 2016.01.29 |
List - erase() (0) | 2016.01.29 |
List - end() (0) | 2016.01.29 |