欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【leetcode】搜索二位矩阵II

程序员文章站 2022-05-21 15:17:49
...

编写一个高效的算法来搜索 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。


以上是题目

分析:

方法一:
首先想到的就是两层for循环遍历这个二维数组。

方法二:

首先分析一下这个矩阵,每一行是递增,每一列也是递增。我们可以选择从数组左下角的数字开始与 target进行比较,如果**该数字大于target,那么该数字所在的行就排除了;如果数字小于target,那么该数字所在的列就可以排除。**就这样我们每一次与左下角的数字进行比较,直到找到该数字

public boolean SerachMatrix(int[][] matrix,int target) {
    if(matrix.length==0){
      return false;
    }
    int i=matrix.length-1;
    int j=0;
    while( i >= 0 && j < matrix[0].length - 1){
      if(matrix[i][j]==target){
        return true;
      }else if(matrix[i][j] < target){
        j++;
      }else if(matrix[i][j]>target){
        i--;
      }
    }
    return false;
  }