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
- c++
- 수광 소자
- 통계학
- 아두이노 소스
- Arduino
- 라인트레이서
- Algorithm
- WinAPI
- C언어
- 컴퓨터 그래픽스
- 자료구조
- 운영체제
- Array
- 아두이노 컴파일러
- Deque
- html
- directx
- 아두이노
- map
- set
- queue
- stl
- arduino compiler
- priority_queue
- Visual Micro
- vector
- list
- LineTracer
- 시스템프로그래밍
- Stack
Archives
- Today
- Total
Kim's Programming
Algorithm - replace_if() 본문
원형)
1 2 3 | template <class ForwardIterator, class UnaryPredicate, class T> void replace_if (ForwardIterator first, ForwardIterator last, UnaryPredicate pred, const T& new_value ); | cs |
의미)
[Iterator first, Iterator last)사이에 있는 데이터들 중에서 pred에 대하여 true를 리턴하는 모든 값들에 대하여 new_value를 할당합니다.
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #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 isEven(int val) { return val % 2 == 0; } void main() { std::vector<int> vector = { 1,3,5,7,4,1,2,5,1 }; std::cout << "Vector--->"; Print(vector); std::replace_if(vector.begin(), vector.end(), isEven, 10); std::cout << "Vector--->"; Print(vector); } | cs |
리턴값)
없음
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - replace_copy_if() (0) | 2017.07.12 |
---|---|
Algorithm - replace_copy (0) | 2017.07.12 |
Algorithm - replace() (0) | 2017.07.12 |
Algorithm - transform() (0) | 2017.07.12 |
Algorithm - iter_swap() (0) | 2017.07.12 |