C++ Algorithm 库 - 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。
异常
如果 二进制函数 或迭代器上的操作引发异常,则引发异常。
请注意,无效参数会导致未定义的行为。
时间复杂度
Linear.
示例
以下示例显示了 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'.