acwing730. 机器人跳跃问题
leetcode162. 寻找峰值
leetcode154. 寻找旋转排序数组中的最小值 II
leetcode153. 寻找旋转排序数组中的最小值
leetcode1011. 在 D 天内送达包裹的能力
class Solution {public: int shipWithinDays(vector<int>& weights, int days) { int l=*max_element(weights.begin(),weights.end());
leetcode611. 有效三角形的个数
leetcode33. 搜索旋转排序数组
leetcode81. 搜索旋转排序数组 II
leetcode74. 搜索二维矩阵
分析有题意可知,将矩阵按行排列可化为一个有序数列,可采用二分来寻找目标值,其中中间值的下标为matrix[mid/n][mid%n],n为列数。class Solution {public: bool searchMatrix(vector<vector<int>>&a