【LintCode】搜索二维矩阵 II

描述


写出一个高效的算法来搜索m×n矩阵中的值,返回这个值出现的次数。

这个矩阵具有以下特性:

  • 每行中的整数从左到右是排序的。
  • 每一列的整数从上到下是排序的。
  • 在每一行或每一列中没有重复的整数。
样例


考虑下列矩阵:

[

    [1, 3, 5, 7],

    [2, 4, 7, 8],

    [3, 5, 9, 10]

]

给出target = 3,返回 2

代码


public class Solution {
    /**
     * @param matrix: A list of lists of integers
     * @param: A number you want to search in the matrix
     * @return: An integer indicate the occurrence of target in the given matrix
     */
    public int searchMatrix(int[][] matrix, int target) {
        // write your code here
        //从右上角开始搜索,因为从左到右递增,从上到下递增,从右上角
        //开始搜索的话效率高,target值大于矩阵点row++,target值小于
        //矩阵点,column--,target值等于矩阵点,count++,row++,column--
        int count=0;
        if(matrix.length==0)
        return 0;
        int row=matrix.length;
        int column=matrix[0].length;
        int i=0;
        int j=column-1;
   
        while(i<=row-1&&j>=0){
           
            if(target>matrix[i][j])
            i++;
           else
            if(target


你可能感兴趣的:(算法)