std::binary_search
在头文件 <algorithm> 中定义 |
||
(1) | ||
template< class ForwardIt, class T > bool binary_search( ForwardIt first, ForwardIt last, |
(从 C++20 开始为 constexpr) (直到 C++26) |
|
template< class ForwardIt, class T = typename std::iterator_traits <ForwardIt>::value_type > |
(从 C++26 开始) | |
(2) | ||
template< class ForwardIt, class T, class Compare > bool binary_search( ForwardIt first, ForwardIt last, |
(从 C++20 开始为 constexpr) (直到 C++26) |
|
template< class ForwardIt, class T = typename std::iterator_traits <ForwardIt>::value_type, |
(从 C++26 开始) | |
检查与 value 等效的元素是否出现在分区范围 [
first,
last)
内。
如果 !bool(*iter < value) && !bool(value < *iter) 对 如果满足以下任何条件,则行为未定义
|
(直到 C++20) |
等效于 std::binary_search(first, last, value, std::less{})。 |
(从 C++20 开始) |
[
first,
last)
中的某个迭代器 iter 为 true,则返回 true。否则返回 false。- 对于
[
first,
last)
中的任何元素 elem,bool(comp(elem, value)) 并不意味着 !bool(comp(value, elem))。 [
first,
last)
中的元素 elem 并没有根据表达式 bool(comp(elem, value)) 和 !bool(comp(value, elem)) 进行分区。
内容 |
[编辑] 参数
first, last | - | 要检查的已分区的元素范围 |
value | - | 用于与元素比较的值 |
comp | - | 二元谓词,如果第一个参数的顺序在第二个参数之前,则返回 true。 谓词函数的签名应该等同于以下内容 bool pred(const Type1 &a, const Type2 &b); 虽然签名不需要有 const &,但函数不得修改传递给它的对象,并且必须能够接受类型(可能为 const) |
类型要求 | ||
-ForwardIt 必须满足LegacyForwardIterator的要求。 | ||
-Compare 必须满足BinaryPredicate的要求。它不需要满足Compare的要求。 |
[编辑] 返回值
如果找到与 value 等效的元素,则返回 true,否则返回 false。
[编辑] 复杂度
假设 N 是 std::distance(first, last)
2(N)+O(1) 次比较器 comp 的应用。
但是,如果 ForwardIt
不是LegacyRandomAccessIterator,则迭代器增量的次数与 N 成线性关系。
[编辑] 备注
虽然 std::binary_search
只要求 [
first,
last)
被分区,但此算法通常用于 [
first,
last)
被排序的情况,以便二分查找对任何 value 都有效。
std::binary_search
仅检查是否存在等效元素。要获取指向该元素的迭代器(如果存在),应改用 std::lower_bound。
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_algorithm_default_value_type |
202403 | (C++26) | 算法的列表初始化 (1,2) |
[编辑] 可能的实现
binary_search (1) |
---|
template<class ForwardIt, class T = typename std::iterator_traits<ForwardIt>::value_type> bool binary_search(ForwardIt first, ForwardIt last, const T& value) { return std::binary_search(first, last, value, std::less{}); } |
binary_search (2) |
template<class ForwardIt, class T = typename std::iterator_traits<ForwardIt>::value_type, class Compare> bool binary_search(ForwardIt first, ForwardIt last, const T& value, Compare comp) { first = std::lower_bound(first, last, value, comp); return (!(first == last) and !(comp(value, *first))); } |
[编辑] 示例
#include <algorithm> #include <cassert> #include <complex> #include <iostream> #include <vector> int main() { const auto haystack = {1, 3, 4, 5, 9}; for (const auto needle : {1, 2, 3}) { std::cout << "Searching for " << needle << '\n'; if (std::binary_search(haystack.begin(), haystack.end(), needle)) std::cout << "Found " << needle << '\n'; else std::cout << "No dice!\n"; } using CD = std::complex<double>; std::vector<CD> nums{{1, 1}, {2, 3}, {4, 2}, {4, 3}}; auto cmpz = [](CD x, CD y){ return abs(x) < abs(y); }; #ifdef __cpp_lib_algorithm_default_value_type assert(std::binary_search(nums.cbegin(), nums.cend(), {4, 2}, cmpz)); #else assert(std::binary_search(nums.cbegin(), nums.cend(), CD{4, 2}, cmpz)); #endif }
输出
Searching for 1 Found 1 Searching for 2 no dice! Searching for 3 Found 3
[编辑] 缺陷报告
以下行为变更缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 270 | C++98 | Compare 需要满足Compare,T 需要是LessThanComparable(需要严格弱排序) |
只需要分区; 允许异构比较 |
LWG 787 | C++98 | 最多允许 log 2(N)+2 次比较 |
更正为 log 2(N)+O(1) |
[编辑] 参见
返回与特定键匹配的元素范围 (函数模板) | |
返回指向第一个不小于给定值的元素的迭代器 (函数模板) | |
返回指向第一个大于某个值的元素的迭代器 (函数模板) | |
(C++20) |
确定部分有序范围内是否存在元素 (niebloid) |