sort排序使用以及lower_bound( )和upper_bound( ) 2019-11-29 20:28 −sort()原型: sort(first_pointer,first_pointer+n,cmp) 排序区间是[first_pointer,first_pointer+n) 左闭右开 参数1:第一个参数是数组的首地址,一般写上数组名就可以,因为数组... ...
std::vector<int>::iterator low,up; low=std::lower_bound (v.begin(), v.end(), 20); // 第一个 >= 20 的元素的迭代器 up= std::upper_bound (v.begin(), v.end(), 20); // 第一个 > 20 的元素的迭代器 std::cout << "lower_bound at position " << (low- v.begin()) <<...