관리 메뉴

Kim's Programming

Algorithm - none_of() 본문

STL - Algorithm/Algorithm - Non-Modifying

Algorithm - none_of()

Programmer. 2017. 7. 13. 15:24

원형)


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



의미)


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



소스)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<iostream>
#include<algorithm>
#include<vector>
 
bool isEven(int val)
{
    return val % == 1;
}
 
void main()
{
    std::vector<int> vector = { 2,4,6,10,12,14,16 };
    if (std::none_of(vector.begin(), vector.end(), isEven))
        std::cout  << "confirm" << std::endl;
    else
        std::cout  << "No" << std::endl;
}
cs



리턴값)


모든 범위내의 원소들에 대해서 pred에 대해서 false를 리턴하면 true를 리턴하고 그외의 경우나 비어있으면 false를 리턴합니다.



결과)





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

Algorithm - find()  (0) 2017.07.13
Algorithm - for_each()  (0) 2017.07.13
Algorithm - any_if()  (0) 2017.07.13
Algorithm - all_of()  (0) 2017.07.13
Algorithm - search_n()  (0) 2016.02.11