剑指offer04二维数组中的查找

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer04二维数组中的查找相关的知识,希望对你有一定的参考价值。

剑指offer04二维数组中的查找

题目

在这里插入图片描述

代码

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

结果

在这里插入图片描述

以上是关于剑指offer04二维数组中的查找的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer 04. 二维数组中的查找

#yyds干货盘点#剑指 Offer 04. 二维数组中的查找

剑指 Offer(第 2 版)刷题 | 04. 二维数组中的查找

剑指 Offer 04. 二维数组中的查找

剑指Offer打卡04.二维数组中的查找

剑指Offer打卡04.二维数组中的查找