STL中关于二分查找的函数有三个lower_bound,upper_bound,binary_search。这三个函数都运用于有序区间,头文件都是#include<algorithm>
1.lower_bound
ForwardIter lower_bound(ForwardIter first, ForwardIter last,const _Tp& val)算法返回一个非递减序列[first, last)中的第一个大于等于值val的位置。不存在则返回last,通过返回的地址减去起始地址first,得到数组在数组中的下标
int arr[6]={1,2,4,7,15,34};
sort(arr,arr+6);
int pos=lower_bound(num,num+6,7)-num;//返回的是第一个大于等于7的元素的下标
或者
int pos=lower(res.begin(),res.end(),val)-res.begin();
2.upper_bound
ForwardIter upper_bound(ForwardIter first, ForwardIter last, const _Tp& val)算法返回一个非递减序列[first, last)中的第一个大于值val的位置。不存在则返回last,通过返回的地址减去起始地址first,得到元素在数组中的下标
int arr[6]={1,2,4,7,15,34};
sort(arr,arr+6);
int pos=upper_bound(num,num+6,7)-num;//返回的是第一个大于7的元素的下标
或者:
int pos=upper(res.begin(),res.end(),val)-res.begin();
示例如下:
3.binart_search
函数模板:binary_search(arr,arr+size,index);
arr:数组首地址
size:数组元素个数
index:需要查找的值
在数组中以二分法检索的方式查找,若在数组(要求数组元素非递减)中查找到index元素则为真,否则返回false