题目描述
在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
思路:二维数组 每行数据递增,没列数据递增。先用右上角数据与target比较,如果数据大于target,列数据---;如果数据小于列target,行数据++。
#include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
bool Find(int target, vector<vector<int> > array) {
int rows = array.size();
int cols = array[0].size();
int i = 0, j = cols-1;
/*
第一行,最后一列
*/
while ((i <rows)&&(j >= 0))
{
if (array[i][j] > target) {
j--;
}
else if (array[i][j] < target) {
i++;
}
else
{
return true;
}
}
return false;
}
};
网友评论