搜索二维矩阵2

Posted Alice_yufeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搜索二维矩阵2相关的知识,希望对你有一定的参考价值。

class Solution 
    public boolean searchMatrix(int[][] matrix, int target) 
        int m = matrix.length, n = matrix[0].length;
        int x = 0, y = n - 1;
        while (x < m && y >= 0) 
            if (matrix[x][y] == target) 
                return true;
            
            if (matrix[x][y] > target) 
                --y;
             else 
                ++x;
            
        
        return false;
    

以上是关于搜索二维矩阵2的主要内容,如果未能解决你的问题,请参考以下文章

代码题(36)— 搜索二维矩阵

每日5题搜索二维矩阵2

搜索二维矩阵 II

Leetcode 240.搜索二维矩阵II

240. 搜索二维矩阵 II 的三种解法

搜索二维矩阵 II