【LeetCode-算法】 74.搜索二维数组

题目

编写一个高效的算法来判断 m x n 矩阵中,是否存在一个目标值。该矩阵具有如下特性:
每行中的整数从左到右按升序排列。
每行的第一个整数大于前一行的最后一个整数。
示例1:

	输入:
matrix = [
  [1,   3,  5,  7],
  [10, 11, 16, 20],
  [23, 30, 34, 50]
]
target = 3
输出: true  

示例2:

输入:
matrix = [
  [1,   3,  5,  7],
  [10, 11, 16, 20],
  [23, 30, 34, 50]
]
target = 13
输出: false 

思路:
创建一个一维数组,将二维数组中的数字有序的放入一维数组中,然后进行二分查找。

代码实现:

class Solution {
    public boolean searchMatrix(int[][] matrix, int target) {
        boolean result = false;
        if (matrix == null || matrix.length == 0) {
            return result;
        }
        if (matrix[0] == null || matrix[0].length == 0) {
            return result;
        }
        int[] newA = new int[matrix.length * matrix[0].length];
        int k = 0;
        for (int i = 0;i < matrix.length; i++) {
            for (int j = 0; j < matrix[0].length; j++) {
                newA[k] = matrix[i][j];
                k++;
            }
        }
        //二分法判断
        if (target == newA[0] || target == newA[newA.length - 1]) {
            result = true;
            return result;
        }
        int lo = 0, hi = newA.length - 1;
        while(lo <= hi) {
            int mid = (lo + hi) >> 1;
            if(target == newA[mid]) {
                result = true;
                return result;
            }
            else if(target < newA[mid]) {
                hi = mid - 1;
            } else {
                lo = mid + 1;
            }
        }
        return result;
    }
}```

**欢迎转载,转载请注明**【https://blog.csdn.net/sinat_35050808/article/details/84036195
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值