杨氏矩阵查找


1.

在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。

#!/usr/bin/python 2.7
# @author liuzhiqiang
# @date 2018-08
# @email [email protected]

# -*- coding:utf-8 -*-
class Solution:
    # array 二维列表
    def Find(self, target, array):
        # write code here
        if not array:
            return False
        row = len(array)
        col = len(array[0])
        i, j = 0, col-1
        while i < row and j >= 0:
            if target == array[i][j]:
                return True
            elif target < array[i][j]:
                j -= 1
            else:
                i += 1
        return False

你可能感兴趣的:(杨氏矩阵查找)