leetcode -- Search a 2D Matrix -- 重点--BS

本文介绍了如何使用两次二分查找法解决LeetCode中的二维矩阵搜索问题,达到O(logm + logn)的时间复杂度。同时提供了两种不同的解题思路,包括直接在矩阵上进行搜索的实现方式。
摘要由CSDN通过智能技术生成

https://oj.leetcode.com/problems/search-a-2d-matrix/

思路1

思路就是做两次BS. 第一次定位行,第二次定位列
O(logm + logn)
http://blog.csdn.net/linhuanmars/article/details/24216235

python code
http://jelices.blogspot.hk/2014/05/leetcode-python-search-2d-matrix.html

自己重写code

class Solution(object):
    def searchMatrix(self, matrix, target):
        """
        :type matrix: List[List[int]]
        :type target: int
        :rtype: bool
        """
        m, n = len(matrix), len(matrix[0])
        low = 0
        high = m - 1

        while low <= high:
            mid = (low + high) / 2
            if matrix[mid][0] == target:
                return True
            elif matrix[mid][0] < target:
                low = mid + 1
            else:
                high = mid - 1
        low -= 1
        x = low
        low, high = 0, len(matrix[x]) - 1

        while low <= high:
            mid = (low + high) / 2
            if matrix[x][mid] == target:
                return True
            elif matrix[x][mid] < target:
                low = mid + 1
            else:
                high = mid - 1
        return False

思路2 直接在matrix上搜索

http://www.cnblogs.com/zuoyuan/p/3770061.html

class Solution:
    # @param matrix, a list of lists of integers
    # @param target, an integer
    # @return a boolean
    def searchMatrix(self, matrix, target):
        i = 0; j = len(matrix[0]) - 1
        while i < len(matrix) and j >= 0:
            if matrix[i][j] == target: return True
            elif matrix[i][j] > target: j -= 1
            else: i += 1
        return False
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值