leetcode:Search a 2D Matrix(数组,二分查找)
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:
- Integers in each row are sorted from left to right.
- The first integer of each row is greater than the last integer of the previous row.
For example,
Consider the following matrix:
[ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 50] ]
Given target = 3
, return true
.
分析:题意为在一个mxn矩阵中查找目标值。可以先通过二分法确定目标值target可能出现的行,然后再用一次二分法确定目标值target在行中的可能位置。
时间复杂度为O(logn+logm)
code如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | class Solution { public : bool searchMatrix(vector<vector< int >>& matrix, int target) { int left=0; int right=matrix.size()-1; if (left != right){ while (left <= right){ int mid=left + (right-left)/2; if (matrix[mid][0]<target){ left=mid+1; } else if (matrix[mid][0]>target){ right=mid-1; } else { return true ; } } } if (right==-1){ return false ; } else { int row=right; int left=0; int right=matrix[row].size()-1; while (left<=right){ int mid=left + (right-left)/2; if (matrix[row][mid]<target){ left=mid+1; } else if (matrix[row][mid]>target){ right=mid-1; } else { return true ; } } return false ; } } }; |
其他思路:
从左下角元素开始遍历,每次遍历中若与目标值target相等则返回true;若小于则列向右移动;若大于则行向下移动。时间复杂度O(logn+logm)
code如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | class Solution { public : bool searchMatrix(vector<vector< int >>& matrix, int target) { int i=matrix.size()-1; int j=0; int m=matrix.size(); int n=matrix[0].size(); while (i>=0 && j<n){ if (matrix[i][j] > target){ i--; } else if (matrix[i][j] == target){ return true ; } else { j++; } } return false ; } }; |
朱颜辞镜花辞树,敏捷开发靠得住!
分类:
leetcode刷题
标签:
leetcode
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· 终于写完轮子一部分:tcp代理 了,记录一下
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理