题解 | #二维数组中的查找#
二维数组中的查找
http://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
public class Solution {
public boolean Find(int target, int [][] array) {
int rows = array.length;//这个是总行数
int cols = array[0].length;//注意这个题意,每一行总列数相同
int row = rows - 1;//因为是从左下角开始找,所以行数为总行数-1,列数为0
int col = 0;
while(row >= 0 && col < cols){
if(array[row][col] < target){
col++;
}
else if(array[row][col] > target){
row--;
}else{
return true;
}
}
return false;
}
}