<algorithm>
头文件中,用于查找指定区域内是否包含某个目标元素。//查找 [first, last) 区域内是否包含 val bool binary_search (ForwardIterator first, ForwardIterator last, const T& val); //根据 comp 指定的规则,查找 [first, last) 区域内是否包含 val bool binary_search (ForwardIterator first, ForwardIterator last, const T& val, Compare comp);其中,first 和 last 都为正向迭代器,[first, last) 用于指定该函数的作用范围;val 用于指定要查找的目标值;comp 用于自定义查找规则,此参数可接收一个包含 2 个形参(第一个形参值为 val)且返回值为 bool 类型的函数,可以是普通函数,也可以是函数对象。
举个例子:有关二分查找算法,读者可阅读《二分查找算法》一节。
#include <iostream> // std::cout #include <algorithm> // std::binary_search #include <vector> // std::vector using namespace std; //以普通函数的方式定义查找规则 bool mycomp(int i, int j) { return i > j; } //以函数对象的形式定义查找规则 class mycomp2 { public: bool operator()(const int& i, const int& j) { return i > j; } }; int main() { int a[7] = { 1,2,3,4,5,6,7 }; //从 a 数组中查找元素 4 bool haselem = binary_search(a, a + 9, 4); cout << "haselem:" << haselem << endl; vector<int>myvector{ 4,5,3,1,2 }; //从 myvector 容器查找元素 3 bool haselem2 = binary_search(myvector.begin(), myvector.end(), 3, mycomp2()); cout << "haselem2:" << haselem2; return 0; }程序执行结果为:
haselem:1
haselem2:1
//第一种语法格式的实现 template <class ForwardIterator, class T> bool binary_search (ForwardIterator first, ForwardIterator last, const T& val) { first = std::lower_bound(first,last,val); return (first!=last && !(val<*first)); } //第二种语法格式的底层实现 template<class ForwardIt, class T, class Compare> bool binary_search(ForwardIt first, ForwardIt last, const T& val, Compare comp) { first = std::lower_bound(first, last, val, comp); return (!(first == last) && !(comp(val, *first))); }
有关 lower_bound() 函数的功能和用法,可阅读《C++ lower_bound()函数》一节;有关 upper_bound() 函数的功能和用法,可阅读《C++ upper_bound()函数》一节。
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有