博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
STL algorithm算法lower_bound和upper_bound(31)
阅读量:5291 次
发布时间:2019-06-14

本文共 3298 字,大约阅读时间需要 10 分钟。

lower_bound原型:

function template
<algorithm>

std::lower_bound

default (1)
template 
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last, const T& val);
custom (2)
template 
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last, const T& val, Compare comp);
该函数返回范围内第一个
不小于(大于或等于)指定val的值。

假设序列中的值都小于val,则返回last.

序列应该已经有序!

使用operator<来比較两个元素的大小。

该函数优化了比較非连续存储序列的比較次数。

其行为类似于:

template 
ForwardIterator lower_bound (ForwardIterator first, ForwardIterator last, const T& val){ ForwardIterator it; iterator_traits
::difference_type count, step; count = distance(first,last); while (count>0) { it = first; step=count/2; advance (it,step); if (*it
一个简单的样例:

#include 
#include
#include
using namespace std;int main(int argv,char **argc){ vector
v1{1,2,3,4}; cout<<"v1="; for(int i:v1) cout<
<<" "; cout<
执行截图:

upper_bound原型:

function template
<algorithm>

std::upper_bound

default (1)
template 
ForwardIterator upper_bound (ForwardIterator first, ForwardIterator last, const T& val);
custom (2)
template 
ForwardIterator upper_bound (ForwardIterator first, ForwardIterator last, const T& val, Compare comp);

该函数返回范围内第一个大于指定val的值。

假设序列中的值都小于val,则返回last.

序列应该已经有序!

使用operator<来比較两个元素的大小。

该函数优化了比較非连续存储序列的比較次数。

其行为类似于:

template 
ForwardIterator upper_bound (ForwardIterator first, ForwardIterator last, const T& val){ ForwardIterator it; iterator_traits
::difference_type count, step; count = std::distance(first,last); while (count>0) { it = first; step=count/2; std::advance (it,step); if (!(val<*it)) // or: if (!comp(val,*it)), for version (2) { first=++it; count-=step+1; } else count=step; } return first;}
一个简单的样例:

// lower_bound/upper_bound example#include 
// std::cout#include
// std::lower_bound, std::upper_bound, std::sort#include
// std::vectorint main () { int myints[] = {10,20,30,30,20,10,10,20}; std::vector
v(myints,myints+8); // 10 20 30 30 20 10 10 20 std::sort (v.begin(), v.end()); // 10 10 10 20 20 20 30 30 std::vector
::iterator low,up; low=std::lower_bound (v.begin(), v.end(), 20); // ^ up= std::upper_bound (v.begin(), v.end(), 20); // ^ std::cout << "lower_bound at position " << (low- v.begin()) << '\n'; std::cout << "upper_bound at position " << (up - v.begin()) << '\n'; return 0;}
执行结果:

lower_bound和upper_bound返回的值刚好是equal_range相应的两个值!

——————————————————————————————————————————————————————————————————

//写的错误或者不好的地方请多多指导,能够在以下留言或者点击左上方邮件地址给我发邮件,指出我的错误以及不足,以便我改动,更好的分享给大家,谢谢。

转载请注明出处:http://blog.csdn.net/qq844352155

author:天下无双

Email:coderguang@gmail.com

2014-9-17

于GDUT

——————————————————————————————————————————————————————————————————

转载于:https://www.cnblogs.com/yxwkf/p/4028935.html

你可能感兴趣的文章
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
用HttpCombiner来减少js和css的请问次数
查看>>
FUSE-用户空间文件系统
查看>>
将tiff文件转化为jpg文件并保存
查看>>
ubuntu 16.04 开机脚本
查看>>
 VS2012 C#调用C++ dll
查看>>
TCL:表格(xls)中写入数据
查看>>
SQL SERVER 2005中如何获取日期(一个月的最后一日、一年的第一日等等)
查看>>
django 学习笔记(转)
查看>>
控制台程序秒变Windows服务(Topshelf)
查看>>
字节流与字符流的区别详解
查看>>
20141026--娱乐-箱子
查看>>
自定义分页
查看>>
Oracle事务
查看>>
任意输入10个int类型数据,把这10个数据首先按照排序输出,挑出这些数据里面的素数...
查看>>
String类中的equals方法总结(转载)
查看>>
图片问题
查看>>
bash使用规则
查看>>
AVL数
查看>>