文章目录 1)概述2)函数使用3)案例代码 1)概述 l o w e r _ b o u n d ( ) lower\_bound() lower_bound() 和 u p p e r _ b o u n d ( ) upper\_bound() upper_bound() 都是基于二分查找在一个排好序的数组或容器(如 v e c t o r , l i s t , s
#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点位置 printf(