
STL
咕咕评测姬
大白大大白
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
lower_bound函数的用法(STL库函数)(转)
函数lower_bound()在first和last中的前闭后开区间进行二分查找,返回大于或等于val的第一个元素位置。如果所有元素都小于val,则返回last的位置 举例如下: 一个数组number序列为:4,25,11,48,69,72,96,100.设要插入数字3,9,111.pos为要插入的位置的下标 则 pos = lower_bound( number, number + 8, 3) ...转载 2018-07-10 19:39:12 · 725 阅读 · 0 评论 -
rope
链接:https://www.nowcoder.com/acm/contest/141/C来源:牛客网 题目描述Eddy likes to play cards game since there are always lots of randomness in the game. For most of the cards game, the very first step in th...原创 2018-07-26 17:49:16 · 507 阅读 · 0 评论