在C++ Boost库中的none_of()函数位于标头‘boost / algorithm / cxx11 / none_of.hpp’下,该标头测试序列中的所有元素,如果所有元素都不共享属性,则返回true。它接受一个序列和一个谓词,并且当该谓词应用于序列中的每个元素时,如果谓词返回false,则返回true。
语法:
bool none_of ( InputIterator first, InputIterator last, Predicate p )
or
bool none_of ( const Range &R, Predicate p)
参数:该函数接受如下所述的参数:
- first :它指定输入迭代器到序列中的初始位置。
- second :它指定输入迭代器到序列中的最终位置。
- p :它指定一个一元谓词函数,该函数接受一个元素并返回bool。
- R :这是完整的序列。
返回值:如果给定谓词对于序列的所有元素均为false,则该函数返回true,否则返回false。
下面是上述方法的实现:
计划1 :
// C++ program to implement the
// above mentioned function
#include
#include
using namespace std;
// using boost::algorithm;
// Predicate function to check if
// the element is odd or not
bool isOdd(int i)
{
return i % 2 == 1;
}
// Drivers code
int main()
{
// Declares the sequence with
// 5 length and none elements as 1
// [1, 1, 1, 1, 1]
vector c(5, 1);
// Run the function with second syntax
bool ans
= boost::algorithm::none_of(c, isOdd);
// Condition to check
if (ans == 1)
cout << "all are not odd";
else
cout << "all are odd";
return 0;
}
输出:
all are odd
计划2 :
// C++ program to implement the
// above mentioned function
#include
#include
using namespace std;
// using boost::algorithm;
// Predicate function to check if
// the elements are less than 7 or not
bool noneLessThanSeven(int i)
{
return i < 7;
}
// Drivers code
int main()
{
// Declares the sequence
int a[] = { 1, 2, 5, 6 };
// Run the function with first syntax
bool ans
= boost::algorithm::none_of(a, a + 4,
noneLessThanSeven);
// Condition to check
if (ans == 1)
cout << "all greater than 7";
else
cout << "all smaller than 7";
return 0;
}
输出:
all smaller than 7
参考:https://www.boost.org/doc/libs/1_70_0/libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/none_of.html
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。