C++ 算法实现 Posted on 2023-04-09 | Contents: [TOC] 排列GO 排列组合 组合todo lower_bound头文件:algorithm lower_bound()返回值是一个迭代器,返回指向大于等于key的第一个值的位置;没找到就返回last位置 对象:有序数组或容器 12345678910#include <algorithm>#include <iostream>using namespace std;int main(){ int a[]={1,2,3,4,5,7,8,9}; printf("%d",lower_bound(a,a+8,6) - a); // a = a.begin() return 0; } 输出为 5