首页 > 其他 > 详细

LintCode "Search a 2D Matrix II"

时间:2015-09-23 06:43:59      阅读:283      评论:0      收藏:0      [点我收藏+]

Simply a revise of a genius Greedy algorithm seen on LeetCode - linear walking.

class Solution {
public:
    /**
     * @param matrix: A list of lists of integers
     * @param target: An integer you want to search in matrix
     * @return: An integer indicate the total occurrence of target in the given matrix
     */
    int searchMatrix(vector<vector<int> > &m, int target) 
    {
        int cnt = 0;
        int h = m.size();
        if (!h) return cnt;
        int w = m[0].size();

        int x = w - 1, y = 0;
        while( (x >= 0 && x < w) && (y >= 0 && y < h))
        {
            int v = m[y][x];
            if (v <= target)
            {
                cnt += v == target;
                y ++;
            }
            else
            {
                x --;
            }
        }
        return cnt;
    }
};

 

LintCode "Search a 2D Matrix II"

原文:http://www.cnblogs.com/tonix/p/4831111.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!