标签:io os sp c ios algorithm return print ld
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<cstdlib>
#include<algorithm>
#include<queue>
#include<vector>
#include<set>
using namespace std;
int a[5]={3,4,11,51,61};
int main()
{
int pos1,pos2;
pos1=lower_bound(a,a+5,4)-a;//返回大于或等于查找值的第一个元素位置
pos2=upper_bound(a,a+5,4)-a;//也就是“元素值>查找值”的第一个元素的位置
printf("%d\n",pos1);
printf("%d\n",pos2);
return 0;
}
标签:io os sp c ios algorithm return print ld
原文地址:http://www.cnblogs.com/a972290869/p/4106841.html