标签:
std::lower_bound(first, last, val) // 返回从左到右第一个大于等于val的位置 std::upper_bound(first, last, val) // 返回从左到右第一个大于val的位置
Commen
原文地址:http://www.cnblogs.com/takeoffyoung/p/4741143.html