代码拉取完成,页面将自动刷新
/*
* @Description:
* @Version: 1.0
* @Author: Vicro
* @Date: 2020-12-04 14:14:02
* @LastEditTime: 2020-12-04 14:57:05
* @FilePath: \Leetcode\剑指 Offer 04. 二维数组中的查找.cpp
*/
#include <vector>
#include <iostream>
using namespace std;
/*
RESULT: Accept
TIME: 48ms BEAT 93.07% O(n) = m + n
MEMORY: 14MB BEAT 5.11% O(n) = 1
Description: 线性查找
*/
class Solution {
public:
bool findNumberIn2DArray(vector<vector<int>>matrix, int target) {
if (matrix.size() == 0) return false;
if (matrix[0].size() == 0) return false;
int min = matrix[0][0], max = matrix[matrix.size() - 1][matrix[0].size() - 1];
if ((target > max) || (target < min)) return false;
int row = 0, col = matrix[0].size() - 1;
while (row < matrix.size() && col >= 0)
{
if (matrix[row][col] == target) return true;
else if (matrix[row][col] < target) row ++;
else col --;
}
return false;
}
};
int main(){
Solution sol;
bool ans = sol.findNumberIn2DArray({{}}, 20);
cout << ans << endl;
system("pause");
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。