관리 메뉴

Kim's Programming

Algorithm - is_partitioned() 본문

STL - Algorithm/Algorithm - Partitions

Algorithm - is_partitioned()

Programmer. 2017. 7. 10. 23:36

원형)


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 % == 0;
}
 
void main()
{
    std::vector<int> vector = { 1,2,3,4,5,6,7,8,};
    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