lower_bound() 函数使用详解

Posted woxiaosade

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lower_bound() 函数使用详解相关的知识,希望对你有一定的参考价值。

简介

lower_bound()函数是用来求一个容器中,第一个大于等于所要查找的元素的地址,具体的原理是二分查找,因此它只能用于非降序序列
他有三个参数,第一个参数是容器的初始地址,第二个参数是容器的末尾位置,第三个参数是所要查找的元素值。
返回值是第一个大于等于所要查找的元素的地址。

具体使用

   vector<int> v;
   v.push_back(1), v.push_back(2), v.push_back(3);
   //打印 2 的位置
   cout << lower_bound(v.begin(), v.end(), 2) - v.begin();
    int a[] = 1,2,3;
    //打印 2 的位置
    cout << lower_bound(a, a + 3, 2) - a;

以上是关于lower_bound() 函数使用详解的主要内容,如果未能解决你的问题,请参考以下文章

有关lower_bound()函数的使用

Maximum Value(unique函数,lower_bound()函数,upper_bound()函数的使用)

关于函数lower_bound()如何使用的问题

c++stl之lower_bound,upper_bound和equal_range函数的详细介绍!!!

lower_bound()函数与quicksort()函数的简单掌握

二分检索函数lower_bound()和upper_bound()