码迷,mamicode.com
首页 > 其他好文 > 详细

[二分搜索] leetcode 240 Search a 2D Matrix II

时间:2019-08-11 16:54:33      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:class   ++   搜索   二分   amp   problems   双指针   public   arch   

problem:https://leetcode.com/problems/search-a-2d-matrix-ii

         经典双指针二分查找题目。

class Solution {
public:
    bool searchMatrix(vector<vector<int>>& matrix, int target) {
        int m = matrix.size();
        if(!m) return false;
        int n = matrix[0].size();
        if(!n) return false;
        
        int i = 0;
        int j = n - 1;
        while(i < m && j >= 0)
        {
            if(target == matrix[i][j]) return true;
            else if(target > matrix[i][j]) i++;
            else j--;
        }
        return false;
    }
};

 

[二分搜索] leetcode 240 Search a 2D Matrix II

标签:class   ++   搜索   二分   amp   problems   双指针   public   arch   

原文地址:https://www.cnblogs.com/fish1996/p/11335373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!