题解 | #二维数组中的查找#
二维数组中的查找
https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param target int整型
* @param array int整型vector<vector<>>
* @return bool布尔型
*/
bool Find(int target, vector<vector<int> >& array) {
// write code here
if (array.empty())
return false;
int rows = array.size();
int cols = array[0].size();
int row = 0;
int col = cols - 1;
while (row < rows && col >= 0) {
if (target == array[row][col])
return true;
if (target < array[row][col])
col--;
if (target > array[row][col])
row++;
}
return false;
}
};
#剑指offer#
