刷题——二维数组查找

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

package timufuxi;
public class kaoshi {

    public static void main(String[] args) {
        Solution solution =new Solution();
        int[][] arr= {{1,2,3,4,5},
                      {6,7,8,9,10},
                      {11,12,13,14,15}};
        Boolean symbol=solution.Find(8,arr);
        System.out.println(symbol);
    }
}
class Solution {
    public boolean Find(int target, int [][] array) {
            int row=array.length;
            int col=array[0].length;
            int i=0;
            int j=col-1;
            while(i<row&&j>=0){
                if(array[i][j]>target){
                    j--;
                    continue;
                }else if(array[i][j]<target){
                    i++;
                    continue;
                }else{
                    return true;
                }
            }
            return false;
    }
}

猜你喜欢

转载自blog.csdn.net/baidu_35752384/article/details/82454503
今日推荐