C++的二分函数:upper_bound()与lower_bound()(有实例)

原文链接: https://blog.csdn.net/xavierdarkness/article/details/54973243

二分函数直接用

  • upper_bound()与lower_bound()使用方法

都是二分函数,头文件

  • upper_bound返回第一个大于的元素的下标;
  • lower_bound返回第一个大于等于元素的下标;
#include <iostream>
#include <algorithm>//必须包含的头文件
using namespace std;
int main()
{
  int point[10] = {1,3,7,7,9};
  int tmp = upper_bound(point, point+5, 7) - point;//按从小到大,7最多能插入数组point的哪个位置 
  tmp = lower_bound(point, point+5, 7) - point;////按从小到大,7最少能插入数组point的哪个位置 
  printf("%d\n",tmp); 
  return 0;
}

output:
4
2

猜你喜欢

转载自blog.csdn.net/kkkksc03/article/details/102711223