博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Search a 2D Matrix 搜索一个二维矩阵
阅读量:5837 次
发布时间:2019-06-18

本文共 2244 字,大约阅读时间需要 7 分钟。

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.

For example,

Consider the following matrix:

[  [1,   3,  5,  7],  [10, 11, 16, 20],  [23, 30, 34, 50]]

Given target = 3, return true.

这道题要求搜索一个二维矩阵,由于给的矩阵是有序的,所以很自然的想到要用,我们可以在第一列上先用一次二分查找法找到目标值所在的行的位置,然后在该行上再用一次二分查找法来找是否存在目标值,代码如下:

// Two binary searchclass Solution {public:    bool searchMatrix(vector
> &matrix, int target) { if (matrix.empty() || matrix[0].empty()) return false; if (target < matrix[0][0] || target > matrix.back().back()) return false; int left = 0, right = matrix.size() - 1; while (left <= right) { int mid = (left + right) / 2; if (matrix[mid][0] == target) return true; else if (matrix[mid][0] < target) left = mid + 1; else right = mid - 1; } int tmp = right; left = 0; right = matrix[tmp].size() - 1; while (left <= right) { int mid = (left + right) / 2; if (matrix[tmp][mid] == target) return true; else if (matrix[tmp][mid] < target) left = mid + 1; else right = mid - 1; } return false; }};

当然这道题也可以使用一次二分查找法,如果我们按S型遍历该二维数组,可以得到一个有序的一维数组,那么我们只需要用一次二分查找法,而关键就在于坐标的转换,如何把二维坐标和一维坐标转换是关键点,把一个长度为n的一维数组转化为m*n的二维数组(m*n = n)后,那么原一维数组中下标为i的元素将出现在二维数组中的[i/n][i%n]的位置,有了这一点,代码很好写出来了:

// One binary searchclass Solution {public:    bool searchMatrix(vector
> &matrix, int target) { if (matrix.empty() || matrix[0].empty()) return false; if (target < matrix[0][0] || target > matrix.back().back()) return false; int m = matrix.size(), n = matrix[0].size(); int left = 0, right = m * n - 1; while (left <= right) { int mid = (left + right) / 2; if (matrix[mid / n][mid % n] == target) return true; else if (matrix[mid / n][mid % n] < target) left = mid + 1; else right = mid - 1; } return false; }};

本文转自博客园Grandyang的博客,原文链接:,如需转载请自行联系原博主。

你可能感兴趣的文章
某源码thread,socket研究2
查看>>
分拆VS整合,哪一个入口才能神庙逃生
查看>>
Mysql的一些操作
查看>>
第四次个人作业 -----alpha测试
查看>>
java不同安装包的安装方法(rpm,bin,tar)
查看>>
php页面编码设置详解
查看>>
如何将Outlook Express中的邮件从繁体系统转到简体系统
查看>>
if __name__=="__main__"
查看>>
存储基本知识
查看>>
我的友情链接
查看>>
selenium+python常用函数
查看>>
BadgeView
查看>>
Android Reverse Engineering
查看>>
我的友情链接
查看>>
insmod 和 modprobe使用方法
查看>>
跟我学PHP第二篇- 配置Mysql以及PHP WampServer篇(1)
查看>>
实现配置文件备份的小脚本
查看>>
shell变量的操作
查看>>
Entity Framework VS Mybatis 不同点剖析
查看>>
使用802.1X+FreeRadius+LDAP实现网络准入方案
查看>>