관리 메뉴

Kim's Programming

Algorithm - find_if_not() 본문

STL - Algorithm/Algorithm - Non-Modifying

Algorithm - find_if_not()

Programmer. 2017. 7. 13. 17:37

원형)


1
2
template <class InputIterator, class UnaryPredicate>
   InputIterator find_if_not (InputIterator first, InputIterator last, UnaryPredicate pred);
cs



의미)


[Iterator first, Iterator last)사이의 원소들 중에서 pred에 대하여 false를 리턴하는 첫 원소를 가리키는 Iterator를 리턴합니다.



소스)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<vector>
#include<iostream>
#include<algorithm>
 
bool find_if(int i)
{
    if (i % == 0)
        return true;
    return false;
}
 
void main()
{
    std::vector<int> Vector = { 0,2,4,6,8,10 };
    std::vector<int>::iterator Iter;
    Iter = std::find_if_not(Vector.begin(), Vector.end(), find_if);
    if (Iter != Vector.end())
        std::cout << "not odd value -> " << *Iter << std::endl;
    else
        std::cout << "No data" << std::endl;
}
cs


리턴값)



[Iterator first, Iterator last)사이의 원소들 중에서 pred에 대하여 false를 리턴하는 첫 원소를 가리키는 Iterator를 리턴합니다. pred에 대하여 모든 원소가 true를 리턴한다면 Iterator last를 리턴합니다.



결과)





'STL - Algorithm > Algorithm - Non-Modifying' 카테고리의 다른 글

Algorithm - find_end()  (0) 2017.07.14
Algorithm - find_if()  (0) 2017.07.13
Algorithm - find()  (0) 2017.07.13
Algorithm - for_each()  (0) 2017.07.13
Algorithm - none_of()  (0) 2017.07.13