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
- stl
- 아두이노 소스
- priority_queue
- 수광 소자
- directx
- Array
- 라인트레이서
- vector
- c++
- Arduino
- Stack
- set
- Visual Micro
- C언어
- queue
- map
- 자료구조
- Deque
- LineTracer
- 아두이노 컴파일러
- 아두이노
- 시스템프로그래밍
- 통계학
- 컴퓨터 그래픽스
- 운영체제
- arduino compiler
- Algorithm
- WinAPI
- list
- html
Archives
- Today
- Total
Kim's Programming
Algorithm - none_of() 본문
원형)
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 % 2 == 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 |