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


C++ none_of()用法及代碼示例


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