摘要: 第一题二分查找 简答回答:经典的二分查找,采用的是左闭右闭区间,主要需要注意的就是右区间的下标 代码如下:class Solution { public int search(int[] nums, int target) { int left = 0;//左下标 int right = nums. 阅读全文
posted @ 2025-09-17 11:44 重生励志成为算法高手 阅读(34) 评论(0) 推荐(0)