C++ 算法 all_of()函数
C++算法all_of()函数返回一个true值,如果’pred’参数的值为true。对于范围[first, last]中的所有元素,该值应为true。
语法
template <class InputIterator, class UnaryPredicate>
bool all_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::all_of(arr.begin(), arr.end(), [](int k) {return k%2;} ) )
std::cout <<"All the array elements are odd.";
return 0;
}
输出:
All the array elements are odd.
示例2
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int ar[6] = {2, 5, -7, -9, 3, 5};
all_of(ar, ar+6, [](int x) { return x>0; })?
cout<<"All elements are positive \n":
cout<<"All elements are not positive";
return 0;
}
输出:
All elements are not positive
复杂性
该函数以线性方式移动,从第一个元素向最后一个元素移动。对于列表的每个元素,都会检查 ‘pred’ 的值。搜索将继续进行,直到遇到 ‘pred’ 值的不匹配。
数据竞争
函数要么访问指定范围内的所有对象,要么访问其中一些对象。
异常
如果任何参数引发异常,该函数将引发异常。