题解 | #二维数组中的查找#
二维数组中的查找
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 m = array.length, n = array[0].length;
int row = m - 1, col = 0;
while (row >= 0 && col < n) {
int num = array[row][col];
if (target == num) {
return true;
} else if (target > num) {
col++;
} else {
row--;
}
}
return false;
}
}
查看13道真题和解析