摘要: leetcode74 搜索二维矩阵 思路 可以使用二叉搜索,首先先看标准的闭区间二叉搜索代码 public int qSearch(int[] a,int l,int r,int target){ int mid=(l+r)/2; if(l>r) return l;//终止条件,区间为空 if(a[ 阅读全文
posted @ 2024-09-28 15:24 vast_joy 阅读(10) 评论(0) 推荐(0) 编辑