标签:names 数组 turn mes clu ace printf main math
#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\n",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\n",x);
return 0;
}
返回值
4
lower_bound()和upper_bound()如果搜下标到头返回啥
标签:names 数组 turn mes clu ace printf main math
原文地址:https://www.cnblogs.com/Lour688/p/12774282.html