C++ 算法 中的 none_of函数

首页 / C++入门教程 / C++ 算法 中的 none_of函数

如果'pred'参数的值为false,则C++算法none_of()函数将返回true值。对于[first,last)参数内的所有元素,该值均应为false。

none_of - 语法

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

none_of - 参数

first  - 它指定列表中的第一个元素。

last   -  它指定列表中的最后一个元素。

pred  - 这是一元函数,它接受参数内的参数。

none_of - 返回值

该函数具有一种返回类型" true"。如果参数'pred'的值对于该参数的所有元素都是false,则返回值'true',否则返回false。

none_of - 例子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

none_of - 例子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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

如何设计一个秒杀系统 -〔许令波〕

玩转Spring全家桶 -〔丁雪丰〕

研发效率破局之道 -〔葛俊〕

检索技术核心20讲 -〔陈东〕

容器实战高手课 -〔李程远〕

全链路压测实战30讲 -〔高楼〕

大厂设计进阶实战课 -〔小乔〕

快手 · 音视频技术入门课 -〔刘歧〕

现代React Web开发实战 -〔宋一玮〕

好记忆不如烂笔头。留下您的足迹吧 :)