码迷,mamicode.com
首页 > 其他好文 > 详细

lower_bound 和 upper_bound的用法

时间:2014-11-19 00:05:48      阅读:212      评论:0      收藏:0      [点我收藏+]

标签: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;
}

lower_bound 和 upper_bound的用法

标签:io   os   sp   c   ios   algorithm   return   print   ld   

原文地址:http://www.cnblogs.com/a972290869/p/4106841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!