2024每日刷题(149)
Leetcode---240. 搜索二维矩阵 II
实现代码
cpp
class Solution {
public:
bool searchMatrix(vector<vector<int>>& matrix, int target) {
int r = 0;
int c = matrix[0].size() - 1;
while(r < matrix.size() && c >= 0) {
if(matrix[r][c] == target) {
return true;
}
if(matrix[r][c] > target) {
c--;
} else {
r++;
}
}
return false;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!