首页 > 技术文章 > JZ1 二维数组中查找

changshao 2022-05-14 20:07 原文

题目描述

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

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

推荐阅读