搜索二维矩阵

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搜索二维矩阵相关的知识,希望对你有一定的参考价值。

http://www.lintcode.com/zh-cn/problem/search-a-2d-matrix/

先判断matrix.length == 0 ,再 matrix[0].length==0,(先确定外层,再考虑内层)特殊情况:{{1}},{},{{},{}}

矩阵角标 {{0,1,2,3},

   {4,5,6,7},

   {8,9,10,11}}     row = 3,col =4 , 则位于角标pos的坐标为:pos / col, pos % col。

以上是关于搜索二维矩阵的主要内容,如果未能解决你的问题,请参考以下文章

搜索二维矩阵2

LeetCode74. 搜索二维矩阵

力扣240——搜索二维矩阵

代码题(36)— 搜索二维矩阵

搜索二维矩阵 II

Leetcode 74.搜索二维矩阵