题目:
在一个 n * m 的二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个高效的函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
现有矩阵 matrix 如下:

[

[1, 4, 7, 11, 15],

[2, 5, 8, 12, 19],

[3, 6, 9, 16, 22],

[10, 13, 14, 17, 24],

[18, 21, 23, 26, 30]

]

给定 target = 5,返回 true。

分析:

从左下角开始查找,如果当前数字比目标值大就行数减1,如果当前数字比目标值小则列数加1,直到找到目标值为止。

二维数组的查找_python


代码:

public class FindNumberIn2DArray {
public boolean findNumberIn2DArray(int[][] matrix, int target) {
//这个对数组的判断记得不要忘记
if(matrix == null || matrix.length <= 0 || matrix[0].length <= 0){
return false;
}
int rows = matrix.length;
int cols = matrix[0].length;
//确定左下角位置
int row = rows-1;
int col = 0;
while (row >= 0 && col <= cols - 1){
if (target > matrix[row][col]){
col++;
}else if(target < matrix[row][col]){
row--;
}else {
return true;
}
}
return false;
}
}

二维数组的查找_数据结构_02