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
- WinAPI
- map
- priority_queue
- queue
- Visual Micro
- Stack
- 아두이노
- Arduino
- 수광 소자
- stl
- list
- 운영체제
- Array
- 통계학
- directx
- html
- LineTracer
- 시스템프로그래밍
- vector
- 컴퓨터 그래픽스
- C언어
- 아두이노 소스
- 자료구조
- 라인트레이서
- Algorithm
- arduino compiler
- Deque
- 아두이노 컴파일러
- c++
- set
Archives
- Today
- Total
Kim's Programming
List - merge() 본문
소스)
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 | #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; } bool function(int x, int y) { if (x > y) return true; return false; } void main() { std::list<int> List = { 1,2,3,4,100,101,102,103 }; std::list<int> List_Copy = { 4,3,2,1 }; List.sort(); List_Copy.sort(); print(List); List.merge(List_Copy); print(List); } | cs |
내용)
두 개의 리스트를 합병합니다. 단, 리스트를 합병하기 전에 하려던 리스트들을 sort() 함수를 이용하여 정렬부터 하여야 합니다.
결과)
'STL - Container > Container - List' 카테고리의 다른 글
List - pop_back() (0) | 2016.01.29 |
---|---|
List - Operator '=' (0) | 2016.01.29 |
List - max_size() (0) | 2016.01.29 |
List - insert() (0) | 2016.01.29 |
List - front() (0) | 2016.01.29 |