当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ any_of()用法及代码示例


C++ 算法 any_of() 函数测试范围内每个元素 'pred' 的值,如果对于任何元素 pred 的值为真,则函数返回真,否则返回假。

用法

template <class InputIteratir, class UnaryPredicate>
bool any_of (InputIterator first, InputIterator last, UnaryPredicate pred);

参数

first:它是指定范围内的第一个元素。

last: 它是范围内的最后一个元素。

pred:它是一个接受范围内参数的一元函数。

返回值

该函数有一种返回类型,'true'。如果参数 'pred' 的值对于范围的任何元素为真,则返回值 'true',否则为假。

例子1

#include <iostream>
#include <algorithm>
#include <array>
using namespace std;
int main()
{
	int arr[7] = {2,4,6,5,10,3,14};
	any_of(arr,arr+6, [](int k){return k%2;})?
	cout <<"There are elements which exist in the table of 2":
	cout<<"No elements in the table of 2 exists";
	return 0;
}

输出:

There are elements which exist in the table of 2.

例子2

#include <iostream>
#include <algorithm>
#include <array>
int main()
{
	std::array<int, 5> arr = {2,-4,6,-9,10};
	if(std::any_of (arr.begin(), arr.end(), [](int k) { return k<0;}))
	std::cout <<"Negative elements exist in the array";
	return 0;
}

输出:

Negative elements exist in the array

复杂度

该函数线性移动,从第一个元素开始向最后一个元素移动。对于列表的每个元素,检查 'pred' 的值。搜索继续进行,直到遇到 'pred' 值不匹配为止。

数据竞争

该函数或者访问指定范围内的所有对象,或者访问其中的一些对象。

异常

如果任何参数抛出异常,该函数将抛出异常。






相关用法


注:本文由纯净天空筛选整理自 C++ Algorithm Function any_of()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。