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 | 31 |
Tags
- 라인트레이서
- stl
- 시스템프로그래밍
- LineTracer
- Arduino
- 아두이노
- priority_queue
- 아두이노 컴파일러
- directx
- queue
- Stack
- list
- 수광 소자
- Visual Micro
- 컴퓨터 그래픽스
- Algorithm
- arduino compiler
- C언어
- c++
- html
- vector
- Array
- map
- 통계학
- 운영체제
- 아두이노 소스
- Deque
- WinAPI
- set
- 자료구조
Archives
- Today
- Total
Kim's Programming
Algorithm - is_partitioned() 본문
원형)
1 2 3 | //기본형 template <class InputIterator, class UnaryPredicate> bool is_partitioned (InputIterator first, InputIterator last, UnaryPredicate pred); | cs |
의미)
[Iterator first, Iterator last)사이에 있는 데이터들이 pred함수에 의해서 true값을 리턴하는 값, false값을 리턴하는 값 으로 모두 나뉘어 있다면 true를 리턴합니다.
소스)
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #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,2,3,4,5,6,7,8,9 }; std::vector<int>::iterator iter; if (std::is_partitioned(vector.begin(), vector.end(), isEven)) std::cout << "Partitioned!" << std::endl; else std::cout << "Not partitioned!" << std::endl; iter = std::stable_partition(vector.begin(), vector.end(), isEven); std::cout << "odd element---> "; for (std::vector<int>::iterator iterPos = vector.begin(); iterPos != iter; ++iterPos) std::cout << *iterPos << " "; std::cout << std::endl; std::cout << "even element---> "; for (std::vector<int>::iterator iterPos = iter; iterPos != vector.end(); ++iterPos) std::cout << *iterPos << " "; std::cout << std::endl; Print(vector); if (std::is_partitioned(vector.begin(), vector.end(), isEven)) std::cout << "Partitioned!" << std::endl; else std::cout << "Not partitioned!" << std::endl; } | cs |
내용)
[Iterator first, Iterator last)사이에 있는 데이터들이 pred함수에 의해서 true값을 리턴하는 값, false값을 리턴하는 값 으로 모두 나뉘어 있다면 true를 리턴합니다. 그 이외의 경우엔 false를 리턴하며 범위가 비어있는 경우엔 true를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Partitions' 카테고리의 다른 글
Algorithm - partition_point() (0) | 2017.07.11 |
---|---|
Algorithm - partition_copy() (0) | 2017.07.11 |
Algorithm - stable_partition() (0) | 2017.07.11 |
Algorithm - partition() (0) | 2017.07.10 |