关于java:JZ001二维数组中的查找

4次阅读

共计 970 个字符,预计需要花费 3 分钟才能阅读完成。

二维数组中的查找

题目形容

在一个二维数组中(每个一维数组的长度雷同),每一行都依照从左到右递增的程序排序,每一列都依照从上到下递增的程序排序。请实现一个函数,输出这样的一个二维数组和一个整数,判断数组中是否含有该整数。

题目链接: 二维数组中的查找

代码

public class Jz01 {

    /**
     * 暴力破解法
     *
     * @param target
     * @param array
     * @return
     */
    public static boolean find(int target, int[][] array) {for (int i = 0; i < array.length; i++) {for (int j = 0; j < array[i].length; j++) {if (array[i][j] == target) {return true;}
            }
        }
        return false;
    }

    /**
     * 二分查找
     *
     * @param target
     * @param array
     * @return
     */
    public static boolean find1(int target, int[][] array) {
        // 判断数组是否为空
        int row = array.length;
        if (row == 0) {return false;}
        int column = array[0].length;
        if (column == 0) {return false;}
        int r = 0, c = column - 1; // 右上角元素,从右上角元素开始查找
        while (r < row && c >= 0) {if (target == array[r]) {return true;} else if (target > array[r]) {++r;} else {--c;}
        }

        return false;
    }

    public static void main(String[] args) {int[][] ex1 = new int[4][4];
        for (int i = 0; i < 4; i++) {for (int j = 0; j < 4; j++) {ex1[i][j] = i + j;
            }
        }

        System.out.println(find(4, ex1));
        System.out.println(find1(4, ex1));
        System.out.println(find(222, ex1));
        System.out.println(find1(222, ex1));
    }
}

【每日寄语】 不要否定本人,生存清朗,好运在路上。

正文完
 0