lower_bound()和upper_bound()如果搜下标到头返回啥
Posted lour688
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lower_bound()和upper_bound()如果搜下标到头返回啥相关的知识,希望对你有一定的参考价值。
返回你要搜到的数组的下标的下一位
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
int main(){
int a[5]={1,2,3};
int x=lower_bound(a,a+4,6)-a;
printf("%d
",x);
return 0;
}
返回值
4
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
int main(){
int a[5]={1,2,3};
int x=upper_bound(a,a+4,6)-a;
printf("%d
",x);
return 0;
}
返回值
4
以上是关于lower_bound()和upper_bound()如果搜下标到头返回啥的主要内容,如果未能解决你的问题,请参考以下文章
stl map中的lower_bound和 upper_bound
Java实现 lower_bound() 和 upper_bound()