C++ 算法 lower_bound() 函数是二分查找的版本。此函数用于返回一个迭代器,该迭代器指向不小于(即大于或等于)指定值 val 的有序范围 [first, last) 中的第一个元素。
第一个版本使用运算符来比较元素,第二个版本使用 comp 函数。
用法
default (1) template <class ForwardIterator, class T>
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last,
const T& val);
custom (2) template <class ForwardIterator, class T, class Compare>
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last,
const T& val, Compare comp);
参数
first:指向要搜索的范围中的第一个元素的前向迭代器。
last:指向要搜索范围中过去最后一个元素的前向迭代器。
comp: 一个用户定义的二元谓词函数,它接受两个参数,如果两个参数按顺序返回真,否则返回假。它遵循严格的弱排序来对元素进行排序。
val:用于比较范围内元素的下限值。
返回值
如果没有找到这样的元素,它返回一个迭代器,指向范围的第一个元素,该元素不小于 val 或 last。
复杂度
平均而言,复杂性在第一个和最后一个之间的距离上是对数的:最多执行对数2(N) + 1 元素比较 其中 N = last - first。
数据竞争
访问范围 [first, last) 中的对象。
异常
如果元素比较或迭代器上的操作引发异常,则此函数将引发异常。
注意:无效的参数会导致未定义的行为。
例子1
让我们看一个简单的例子来演示 lower_bound() 的使用:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v = {3, 1, 4, 6, 5};
decltype(v)::iterator it = lower_bound(v.begin(), v.end(), 4);
cout << *it << ", pos = " << (it - v.begin()) << endl;
return 0;
}
输出:
4, pos = 2
例子2
让我们看另一个简单的例子:
#include <iostream> // std::cout
#include <algorithm> // std::lower_bound, std::upper_bound, std::sort
#include <vector> // std::vector
using namespace std;
int main () {
int myints[] = {10,20,30,30,20,10,10,20};
vector<int> v(myints,myints+8); // 10 20 30 30 20 10 10 20
sort (v.begin(), v.end()); // 10 10 10 20 20 20 30 30
vector<int>::iterator low,up;
low=lower_bound (v.begin(), v.end(), 20); // ^
up= upper_bound (v.begin(), v.end(), 20); // ^
cout << "lower_bound at position " << (low- v.begin()) << '\n';
cout << "upper_bound at position " << (up - v.begin()) << '\n';
return 0;
}
输出:
lower_bound at position 3 upper_bound at position 6
例子3
让我们看另一个简单的例子:
#include <algorithm>
#include <iostream>
#include <iterator>
#include <vector>
using namespace std;
template<class ForwardIt, class T, class Compare=less<>>
ForwardIt binary_find(ForwardIt first, ForwardIt last, const T& value, Compare comp={})
{
// Note:BOTH type T and the type after ForwardIt is dereferenced
// must be implicitly convertible to BOTH Type1 and Type2, used in Compare.
// This is stricter than lower_bound requirement (see above)
first = lower_bound(first, last, value, comp);
return first != last && !comp(value, *first) ? first:last;
}
int main()
{
vector<int> data = { 1, 1, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6 };
auto lower = lower_bound(data.begin(), data.end(), 4);
auto upper = upper_bound(data.begin(), data.end(), 4);
copy(lower, upper, ostream_iterator<int>(cout, " "));
cout << '\n';
// classic binary search, returning a value only if it is present
data = { 1, 2, 4, 6, 9, 10 };
auto it = binary_find(data.cbegin(), data.cend(), 4); //< choosing '5' will return end()
if(it != data.cend())
cout << *it << " found at index "<< distance(data.cbegin(), it);
return 0;
}
输出:
4 4 4 4 found at index 2
示例 4
让我们看另一个简单的例子:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
bool ignore_case(char a, char b) {
return(tolower(a) == tolower(b));
}
int main(void) {
vector<char> v = {'A', 'b', 'C', 'd', 'E'};
auto it = lower_bound(v.begin(), v.end(), 'C');
cout << "First element which is greater than \'C\' is " << *it << endl;
it = lower_bound(v.begin(), v.end(), 'C', ignore_case);
cout << "First element which is greater than \'C\' is " << *it << endl;
it = lower_bound(v.begin(), v.end(), 'z', ignore_case);
cout << "All elements are less than \'z\'." << endl;
return 0;
}
输出:
First element which is greater than 'C' is b First element which is greater than 'C' is d All elements are less than 'z'.
相关用法
- C++ Algorithm lexicographical_compare()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm random_shuffle()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm replace()用法及代码示例
- C++ Algorithm set_intersection()用法及代码示例
- C++ Algorithm transform()用法及代码示例
- C++ Algorithm set_difference()用法及代码示例
- C++ Algorithm is_sorted()用法及代码示例
- C++ Algorithm equal_range()用法及代码示例
- C++ Algorithm minmax_element()用法及代码示例
- C++ Algorithm stable_sort()用法及代码示例
- C++ Algorithm min()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm lower_bound()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。