麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Lintcode: Search a 2D matrix II

2019-11-14 23:35:37
字體:
供稿:網(wǎng)友
Lintcode: 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.ExampleConsider the following matrix:[    [1, 3, 5, 7],    [2, 4, 7, 8],    [3, 5, 9, 10]]Given target = 3, return 2.ChallengeO(m+n) time and O(1) extra space

很巧妙的思路,可以從左下或者右上開始找

 1 public class Solution { 2     /** 3      * @param matrix: A list of lists of integers 4      * @param: A number you want to search in the matrix 5      * @return: An integer indicate the occurrence of target in the given matrix 6      */ 7     public int searchMatrix(int[][] matrix, int target) { 8         // write your code here 9         if (matrix==null || matrix.length==0 || matrix[0].length==0) return 0;10         int m = matrix.length;11         int n = matrix[0].length;12         int count = 0;13         int row = m-1;14         int col = 0;15         while (row>=0 && row<m && col>=0 && col<n) {16             int cur = matrix[row][col];17             if (cur == target) {18                 count++;19                 col++;20                 row--;21             }22             else if (cur > target) {23                 row--;24             }25             else col++;26         }27         return count;28     }29 }


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 色七七亚洲 | 精品久久一区二区 | 亚洲人成网在线观看 | 日韩黄色成人 | 国产成人自拍av | 久久777国产线看观看精品 | av免费不卡国产观看 | 日本精品久久久久 | 精品久久久久久国产 | 久久精品re | 亚洲第一页中文字幕 | fc2成人免费人成在线观看播放 | 国产精品久久久久av | 深夜福利视频免费观看 | 黄色a级片视频 | china对白普通话xxxx | 色网站综合 | 免费视频99 | 91av在线影院 | av不卡免费在线 | 精品国产一区二区三区久久久蜜 | 国产精品一区二区三区在线看 | 欧美一级片一区 | 国产永久免费观看 | 中国hdxxxx护士爽在线观看 | 羞羞视频.www在线观看 | 久久综合精品视频 | 日韩av片在线免费观看 | 少妇一级淫片免费放4p | 精精国产xxxx视频在线野外 | 中文字幕精品亚洲 | 成年人免费黄色片 | 国产男女爽爽爽爽爽免费视频 | 草草久久久 | 中国av免费在线观看 | 国产va在线观看 | 狠狠干五月天 | 午夜久久电影 | 黄色网址在线免费 | 久久国产一二区 | 午夜久久久精品一区二区三区 |