LeetCode:240. Search a 2D Matrix II(二维数据找数)

文章最前: 我是Octopus,这个名字来源于我的中文名--章鱼;我热爱编程、热爱算法、热爱开源。所有源码在我的个人github ;这博客是记录我学习的点点滴滴,如果您对 Python、Java、AI、算法有兴趣,可以关注我的动态,一起学习,共同进步。

相关文章:

  1. LeetCode:55. Jump Game(跳远比赛)
  2. Leetcode:300. Longest Increasing Subsequence(最大增长序列)
  3. LeetCode:560. Subarray Sum Equals K(找出数组中连续子串和等于k)

文章目录:

题目描述:

java实现方式1:

python实现方式1:

源码github地址:https://github.com/zhangyu345293721/leetcode


题目描述:

编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target。该矩阵具有以下特性:

每行的元素从左到右升序排列。
每列的元素从上到下升序排列。
示例:

现有矩阵 matrix 如下:

[
  [1,   4,  7, 11, 15],
  [2,   5,  8, 12, 19],
  [3,   6,  9, 16, 22],
  [10, 13, 14, 17, 24],
  [18, 21, 23, 26, 30]
]

给定 target = 5,返回 true。

给定 target = 20,返回 false。


来源:力扣(LeetCode)


java实现方式1:

   /**
     * 输入数据,找出目标值
     *
     * @param matrix 二维数组n
     * @param target 目标值
     * @return 布尔值
     */
    public boolean searchMatrix(int[][] matrix, int target) {
        if (matrix == null || matrix.length < 1) {
            return false;
        }
        int row = matrix.length;
        int i = 0;
        int j = matrix[0].length - 1;
        while (i < row && j >= 0) {
            if (matrix[i][j] == target) {
                return true;
            } else if (matrix[i][j] > target) {
                j--;
            } else {
                i++;
            }
        }
        return false;
    }

时间复杂度:O(n)

空间复杂度:O(1)


python实现方式1:

def search_matrix(matrix: List[List[int]], target: int) -> bool:
    '''
        查找二维数组
    Args:
        matrix: 二维数组
        target: 目标值
    Returns:
        是否找到那个值
    '''
    if not matrix:
        return False
    row = len(matrix)
    i, j = 0, len(matrix[0]) - 1
    while i < row and j >= 0:
        if matrix[i][j] == target:
            return True
        elif matrix[i][j] > target:
            j -= 1
        else:
            i += 1
    return False

时间复杂度:O(n)

空间复杂度:O(1)


源码github地址:GitHub - zhangyu345293721/leetcode: java/python for leetcode: 1) array,2) list,3) string,4) hashtable,5) math,6) tree

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值