C++STL算法binary_search(19)
程序员文章站
2022-05-05 19:10:07
...
函数原型
//不带谓词
template<class _FwdIt, class _Ty>
_NODISCARD inline pair<_FwdIt, _FwdIt> equal_range(_FwdIt _First, _FwdIt _Last, const _Ty& _Val)
//带谓词
template<class _FwdIt, class _Ty, class _Pr>
_NODISCARD inline bool binary_search(_FwdIt _First, _FwdIt _Last, const _Ty& _Val, _Pr _Pred)
查找指定区域内是否包含某个目标元素。如果找到第三个参数,这个算法会返回布尔值 true,否则返回 false。
参数
first 和 last 都为正向迭代器,[first, last) 用于指定该函数的查找范围;
val 给定值;
pr自定义规则,此参数可接收一个包含 2 个形参(第二个形参值始终为 val)且返回值为 bool 类型的函数,可以是普通函数,也可以是函数对象。
不带谓词
#include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
#include <string>
int main()
{
std::vector<int> bb{ 1, 2, 3, 4, 3, 5, 2, 3, 10, 23, 55 };
std::sort(std::begin(bb), std::end(bb));
std::cout << "sort the integer: ";
std::for_each(std::begin(bb), std::end(bb), [](int value) {std::cout << value << " "; });
std::cout << std::endl;
bool rtn = std::binary_search(std::begin(bb), std::end(bb), 3);
if (rtn)
{
std::cout << "find the element: " << rtn << std::endl;
}
return -1;
}
//输出
sort the integer: 1 2 2 3 3 3 4 5 10 23 55
find the element: 1
带谓词
上一篇: binary_search函数
下一篇: 微信小程序学习——view的显示与隐藏
推荐阅读
-
C++STL 算法
-
C++STL算法
-
蓝桥杯 算法训练 - 连续正整数的和 78这个数可以表示为连续正整数的和,1+2+3,18+19+20+21,25+26+27。 输入一个正整数 n(<=10000) 输出 m 行(n有m
-
小鱼要学数据结构与算法(基于python)—Day19树的遍历、优先队列和二叉堆
-
19其他算法(algo)——复杂的算法
-
4.简单算法python实现:二分查找binary_search
-
C++STL算法binary_search(19)
-
04_常用查找算法_binary_search
-
82.C++.常用查找算法-binary_search
-
binary_search算法之Python实现