会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
vastjoy
博客园
首页
新随笔
联系
订阅
管理
2024年9月28日
leetcode74 搜索二维矩阵
摘要: 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)
编辑
公告