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

Leetcode 74

时间:2018-10-28 00:10:09      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:while   for   search   style   ++   ||   chm   ret   color   

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;
        if(target < matrix[0][0] || target > matrix[m-1][n-1]) return false;
        int a = m-1;
        for(int i=1;i < m;i++){
            if(target < matrix[i][0]){
                a = i-1;
                break;
            }
        }
        int j = 0;
        int k = n-1;
        while(j <= k){
            int mid = (j+k)/2;
            if(matrix[a][mid] < target){j = mid+1;}
            else if(matrix[a][mid] > target){k = mid - 1;}
            else{
                return true;
            }
        }
        return false;
    }
};

 

Leetcode 74

标签:while   for   search   style   ++   ||   chm   ret   color   

原文地址:https://www.cnblogs.com/cunyusup/p/9863923.html

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