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

搜索二维矩阵 II

时间:2017-05-02 14:04:12      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:sea   lintcode   int   复杂度   row_count   problem   sts   des   .com   

搜索二维矩阵 II 

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

这个矩阵具有以下特性:

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

考虑下列矩阵:

[

    [1, 3, 5, 7],

    [2, 4, 7, 8],

    [3, 5, 9, 10]

]

给出target = 3,返回 2

挑战 

要求O(m+n) 时间复杂度和O(1) 额外空间

标签 
 
 1 class Solution {
 2 public:
 3     /**
 4      * @param matrix: A list of lists of integers
 5      * @param target: An integer you want to search in matrix
 6      * @return: An integer indicate the total occurrence of target in the given matrix
 7      */
 8     int searchMatrix(vector<vector<int> > &matrix, int target) {
 9         // write your code here
10         int row_count = matrix.size();      //  行数
11         int col_count = 0;                  //  列数
12         if(row_count != 0)
13             col_count = matrix[0].size();
14         int tar_count = 0,i,j;
15 
16         for(i=0; i<row_count && row_count!=0 && col_count!=0; i++) {
17             for(j=0; j<col_count; j++)  {
18                 if(matrix[i][j] == target)
19                     tar_count++;
20                 if(matrix[i][j] > target)
21                     break;
22             }
23         }
24 
25         return tar_count;
26     }
27 };

 

搜索二维矩阵 II

标签:sea   lintcode   int   复杂度   row_count   problem   sts   des   .com   

原文地址:http://www.cnblogs.com/libaoquan/p/6795544.html

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