當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。