C++二分

STL中的函数:

upper_bound();
lower_bound();
二分函数
ans=upper_bound(a, a+i, finds)-a;
ans=lower_bound(a, a+i, finds)-a;
PS:记得-1

你可能感兴趣的:(C++二分)