C++ 算法库 - lower_bound() 函数


描述

C++ 函数std::algorithm::lower_bound()查找不小于给定值的第一个元素。此函数按排序顺序排除元素。它使用二元函数进行比较。

宣言

以下是 std::algorithm::lower_bound() 函数形式 std::algorithm 标头的声明。

C++98

template <class ForwardIterator, class T, class Compare>
ForwardIterator lower_bound(ForwardIterator first, ForwardIterator last,
   const T& val, Compare comp);

参数

  • first - 将迭代器转发到初始位置。

  • last - 将迭代器转发到最终位置。

  • val - 在范围内搜索的下限值。

  • comp - 接受两个参数并返回 bool 的二元函数。

返回值

返回一个迭代器,指向不小于给定值的第一个元素。如果范围内的所有元素都小于val,则函数返回last

例外情况

如果二元函数或迭代器上的操作抛出异常,则抛出异常。

请注意,无效参数会导致未定义的行为。

时间复杂度

线性。

例子

以下示例显示了 std::algorithm::lower_bound() 函数的用法。

#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'.
算法.htm