题解 | #二维数组中的查找# O(m + n)
二维数组中的查找
https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param target int整型 * @param array int整型二维数组 * @return bool布尔型 */ public boolean Find (int target, int[][] array) { // 从左下角开始找 int i = array.length - 1; int j = 0; while (i >= 0 && j < array[0].length) { if (target == array[i][j]) { return true; } if (target < array[i][j]) { i--; // 目标数比当前数小,往上找 } else { j++; // 目标数比当前数大,往右找 } } return false; } }