leetcode hot100 240.搜索二维矩阵



从 右上角 或 左下角 出发

以 右上角 (0, cols-1) 为例:

当前值 x

  • 如果 x == target → 找到了
  • 如果 x > target → 这一列都比 target 大,左移
  • 如果 x < target → 这一行都比 target 小,下移

每一步都能排除一整行或一整列

时间复杂度:O(m + n) :行最多走 m 次,列最多走 n 次。远不会访问同一个单元两次
空间复杂度:O(1): 只用了常数个变量,没有:递归、栈、额外数组、哈希表。空间复杂度 = O(1)

python 复制代码
class Solution:
    def searchMatrix(self, matrix: List[List[int]], target: int) -> bool:
        if not matrix or not matrix[0]:
            return False
        
        rows = len(matrix)
        cols = len(matrix[0])
        
        # 从右上角开始搜索
        row = 0
        col = cols - 1
        
        while row < rows and col >= 0:
            current = matrix[row][col]
            if current == target:
                return True
            elif current > target:
                # 当前值太大,往左移
                col -= 1
            else:
                # 当前值太小,往下移
                row += 1
                
        return False
相关推荐
We་ct9 小时前
LeetCode 148. 排序链表:归并排序详解
前端·数据结构·算法·leetcode·链表·typescript·排序算法
x_xbx12 小时前
LeetCode:2. 两数相加
算法·leetcode·职场和发展
_日拱一卒12 小时前
LeetCode:最长连续序列
算法·leetcode·职场和发展
重生之后端学习12 小时前
287. 寻找重复数
数据结构·算法·leetcode·深度优先·图论
实心儿儿14 小时前
算法7:两个数组的交集
算法·leetcode·职场和发展
sheeta199814 小时前
LeetCode 每日一题笔记 日期:2025.03.19 题目:3212.统计X和Y频数相等的子矩阵数量
笔记·leetcode·矩阵
Storynone15 小时前
【Day28】LeetCode:509. 斐波那契数,70. 爬楼梯,746. 使用最小花费爬楼梯
python·算法·leetcode
博风16 小时前
算法:双指针解:盛最多水的容器
算法·leetcode
阿Y加油吧16 小时前
力扣打卡day05——找到字符串中所有字母异位词、和为K的子数组
leetcode
abant217 小时前
leetcode912 排序算法总结
算法·leetcode·排序算法