二维数组中查找元素

/**
 * 说明:二维数组中,每一行的元素都按照从左到右递增的顺序排列,每一列的元素都按照从上到下递增的顺序排列,判断二维数组中是否包含某个元素。
 *
 * 方法一:
 *      遍历所有的元素,若二维数组有n行n列,则时间复杂度为o(n^2)
 *
 * 方法二:
 *      1)选取二维数组中右上角的元素,如果该元素等于要查找的元素,则直接返回。
 *      2)若该元素大于要查找的元素,则在查找范围中剔除该元素所在的列。
 *      3)若该元素小于要查找的元素,则在查找范围中剔除该元素所在的行。
 *      4)所以,每查找一次就可以将查找的范围缩小一行或一列。
 *      5)若二维数组有n行n列(注:n行n列中,对角线上的元素有√2*n个),则需要查找√2*n次,故时间复杂度为O(n)
 */
public class TwoDimensionalArray {

    public static final int[][] tdArray = {{1, 2, 8, 9}, {2, 4, 9, 12}, {6, 7, 10, 13}, {6, 8, 11, 15}, {7, 9, 13, 17}};

    public static boolean isExist(int target) {

        int rows = tdArray.length;
        int columns = getColumns(tdArray);

        int row = 0;
        int column = columns - 1;

        while (row < rows && column >= 0) {

            if (tdArray[row][column] == target) {
                return true;
            } else if (tdArray[row][column] > target) {
                column--;
            } else {
                row++;
            }

        }
        return false;
    }


    public static int getColumns(int[][] tdArray) {

        int max = 0;
        for (int[] array : tdArray) {
            int length = array.length;
            if (length > max) {
                max = length;
            }
        }
        return max;
    }

    public static void main(String[] args) {

        boolean exist = isExist(13);
        System.out.println(exist);
    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值