编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target。该矩阵具有以下特性:
示例:
现有矩阵 matrix 如下:
[ [1, 4, 7, 11, 15], [2, 5, 8, 12, 19], [3, 6, 9, 16, 22], [10, 13, 14, 17, 24], [18, 21, 23, 26, 30] ]
给定 target = 5
,返回 true
。
给定 target = 20
,返回 false
。
解答(C++):
class Solution { public: bool searchMatrix(vector<vector<int>>& matrix, int target) { if (matrix.empty()) { return false; } int m = 0; int n = matrix[0].size() - 1; while (n >= 0 && m <= matrix.size()-1) { if (matrix[m][n] == target) { return true; } if (matrix[m][n] > target) { n--; } else { m++; } } return false; } };
leetcode_20【排序和搜索】---- 搜索二维矩阵 II
原文:https://www.cnblogs.com/vczf/p/12710333.html