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
- Array
- Stack
- C언어
- 컴퓨터 그래픽스
- map
- stl
- Visual Micro
- WinAPI
- Deque
- vector
- queue
- arduino compiler
- html
- list
- c++
- 아두이노 컴파일러
- Algorithm
- 아두이노 소스
- LineTracer
- 수광 소자
- 통계학
- 운영체제
- priority_queue
- 라인트레이서
- directx
- Arduino
- 아두이노
- 시스템프로그래밍
- 자료구조
- set
Archives
- Today
- Total
Kim's Programming
Algorithm - remove_copy_if() 본문
원형)
1 2 3 | template <class InputIterator, class OutputIterator, class UnaryPredicate> OutputIterator remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, UnaryPredicate pred); | cs |
의미)
[Iterator first, Iterator last)사이에 있는 원소들 중에서 pred가 true를 리턴하게 하는 원소들을 제외하고 Iterator result가 가리키는 위치부터 복사합니다.
소스)
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<algorithm> #include<vector> void Print(const std::vector<int>& target) { for (std::vector<int>::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++) std::cout << *iterPos << ' '; std::cout << std::endl; } bool isOdd(int val) { return val % 2 == 1; } void main() { std::vector<int> vector = { 1,2,3,4,5,6,7,8,9 }; std::vector<int> vectorCopy(8); std::vector<int>::iterator iter; Print(vector); Print(vectorCopy); std::remove_copy_if(vector.begin(), vector.end(), vectorCopy.begin(), isOdd); Print(vector); Print(vectorCopy); } | cs |
리턴값)
복사된 원소 중에서 가장 마지막을 가리키는 Iterator를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - unique_copy() (0) | 2017.07.13 |
---|---|
Algorithm - unique() (0) | 2017.07.13 |
Algorithm - remove_copy() (0) | 2017.07.13 |
Algorithm - remove_if() (0) | 2017.07.13 |
Algorithm - remove() (0) | 2017.07.13 |