如果 'pred' 参数的值为假,C++ 算法 none_of() 函数返回真值。对于 [first, last) 范围内的所有元素,该值应为 false。
用法
template <class InputIterator, class UnaryPredicate>
bool none_of (InputIterator first, InputIterator last, UnaryPredicate pred);
参数
first:它指定列表中的第一个元素。
last:它指定列表中的最后一个元素。
pred:它是一个一元函数,它接受范围内的参数。
返回值
该函数有一种返回类型,'true'。如果参数 'pred' 的值对于范围内的所有元素都为假,则返回值 'true',否则为假。
例子1
#include <iostream>
#include <algorithm>
#include <array>
int main()
{
std::array<int, 6> arr= {25,27,29,31,33,35};
if ( std::none_of(arr.begin(), arr.end(), [](int k) {return k%2==0;} ) )
std::cout <<"None of the elements is divisible by 2";
return 0;
}
输出:
None of the elements is divisible by 2
例子2
#include<iostream>
#include<algorithm>
using namespace std;
bool abc(int b)
{
return b<0;
}
int main()
{
int ar[] = { 2,4,6,8,12,0 };
int p = sizeof(ar)/sizeof(ar[0]);
cout<<"Array";
for(int k=0; k<p; k++)
cout<<" "<<ar[k];
if(none_of(ar, ar+p, abc))
cout<<"None of the elements in the range are negative";
else
cout<<"The range has at least one element that is negative";
return 0;
}
输出:
Array 2 4 6 8 12None of the elements in the range are negative
复杂度
该函数以线性方式移动,从第一个元素开始向最后一个元素移动。检查 'pred' 的列表值的每个元素。搜索继续进行,直到遇到 'pred' 值不匹配为止。
数据竞争
函数访问指定范围内的所有对象或其中一些对象。
异常
如果任何参数抛出异常,该函数将抛出异常。
相关用法
- C++ norm()用法及代码示例
- C++ nextafter()用法及代码示例
- C++ nanl()用法及代码示例
- C++ negate用法及代码示例
- C++ nanf()用法及代码示例
- C++ nexttoward()用法及代码示例
- C++ nearbyint()用法及代码示例
- C++ nan()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ llround()用法及代码示例
- C++ getline(string)用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Functions none_of()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。