在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
public class Solution {
public boolean Find(int target, int [][] array) {
int rows = array.length;
int columns = array[0].length;
int rowIndex = rows-1;
int columnIndex = 0;
int tempValue = 0;
while(rowIndex >= 0 && columnIndex < columns){
tempValue = array[rowIndex][columnIndex];
if(tempValue == target){
return true;
}else if(tempValue <target){
columnIndex++;
}else{
rowIndex--;
}
}
return false;
}
}
网友评论