STLalgorithm算法none_of(40)
none_of原型:
std::none_of
template <class InputIterator, class UnaryPredicate>
bool none_of (InputIterator first, InputIterator last, UnaryPredicate pred);
该函数是当范围内的元素均不满足pred时,返回true,否则返回false.
其行为类似于:
template<class InputIterator, class UnaryPredicate> bool none_of (InputIterator first, InputIterator last, UnaryPredicate pred) { while (first!=last) { if (pred(*first)) return false; ++first; } return true; }
一个简单的例子:
#include <iostream> #include <algorithm> #include <vector> using namespace std; void noneof(){ vector<int> vi{1,3,5,7}; cout<<"vi="; for(int i:vi) cout<<i<<" "; cout<<endl; cout<<"none_of(vi.begin(),vi.end(),[](int n){return n%2==0;}"<<endl; if(none_of(vi.begin(),vi.end(),[](int n){return n%2==0;})) cout<<"all %2!=false"<<endl; }
运行截图:
——————————————————————————————————————————————————————————————————
//写的错误或者不好的地方请多多指导,可以在下面留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我修改,更好的分享给大家,谢谢。
转载请注明出处:http://blog.csdn.net/qq844352155
author:天下无双
Email:coderguang@gmail.com
2014-9-19
于GDUT
——————————————————————————————————————————————————————————————————