首页 > 代码库 > Lintcode28 Search a 2D Matrix solution 题解
Lintcode28 Search a 2D Matrix solution 题解
【题目描述】
Write an efficient algorithm that searches for a value in an m x n matrix.
This matrix has the following properties:Integers in each row are sorted from left to right.The first integer of each row is greater than the last integer of the previous row.
写出一个高效的算法来搜索 m × n矩阵中的值。
这个矩阵具有以下特性:每行中的整数从左到右是排序的。每行的第一个数大于上一行的最后一个整数。
【题目链接】
http://www.lintcode.com/en/problem/search-a-2d-matrix/
【题目解析】
对于这个给定的矩阵,我们如果用brute force解法,用两个嵌套循环,O(n2)便可以得到答案.但是我们需要注意的是这道题已经给定了这个矩阵的两个特性,这两个特性对于提
高我们算法的时间复杂度有很大帮助,首先我们给出一个O(n)的解法,也就是说我们可以固定住右上角的元素,根据递增或者递减的规律,我们可以判断这个给定的数值是否存在于这个矩阵当中.
【参考答案】
http://www.jiuzhang.com/solutions/search-a-2d-matrix/
Lintcode28 Search a 2D Matrix solution 题解
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。