Lintcode038.Search a 2D Matrix II

Posted Vincent丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lintcode038.Search a 2D Matrix II相关的知识,希望对你有一定的参考价值。

题目:

Write an efficient algorithm that searches for a value in an m x n matrix, return the occurrence of it.

This matrix has the following properties:

  • Integers in each row are sorted from left to right.
  • Integers in each column are sorted from up to bottom.
  • No duplicate integers in each row or column.

题解:

 

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> > &matrix, int target) {
        if (matrix.empty() || matrix[0].empty()) {
            return 0;
        }
        
        int cnt = 0;
        int m = matrix.size(), n = matrix[0].size();
        
        for (int i = 0, j = n - 1; i < m && j >= 0; ) {
            if (matrix[i][j] == target) {
                cnt++;
            }
            if (matrix[i][j] > target) {
                --j;
            } else {
                ++i;
            }
        }
        
        return cnt;
    }
};

 

以上是关于Lintcode038.Search a 2D Matrix II的主要内容,如果未能解决你的问题,请参考以下文章

[LintCode] Search a 2D Matrix

Lintcode028.Search a 2D Matrix

lintcode28- Search a 2D Matrix- easy

Lintcode28 Search a 2D Matrix solution 题解

lintcode-easy-Flip Bits

lintcode-medium-Spiral Matrix