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


描述

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

宣言

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

C++98

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

参数

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

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

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

返回值

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

例外情况

如果元素比较或迭代器上的操作抛出异常,则抛出异常。

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

时间复杂度

线性。

例子

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

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main(void) {
   vector<int> v = {1, 2, 5, 13, 14};
   auto it = lower_bound(v.begin(), v.end(), 2);

   cout << "First element which greater than 2 is " << *it << endl;

   it = lower_bound(v.begin(), v.end(), 30);

   if (it == end(v))
      cout << "All elements are less than 30" << endl;
   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

First element which greater than 2 is 2
All elements are less than 30
算法.htm