题解 | #二维数组中的查找#
二维数组中的查找
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) { // write code here if (array.length == 0 || array[0].length == 0) { return false; } int max = array[0].length; for (int i = 0; i < array.length; i++) { int[] t = array[i]; //如果当前行最后一个数小于目标,跳过本行 if (t[t.length - 1] < target) { continue; } else if (t[0] > target) { //如果当前行第一个数大于目标,则目标不在数组中 return false; } for (int j = 0; j < max; j++) { //如果当前列大于目标,在下一行中,当前列必定大于目标 if (t[j] > target) { max = j; } else if (t[j] == target) { return true; } } } return false; } }