0074._Search_a_2D_Matrix
074. Search a 2D Matrix
难度: Medium
刷题内容
原题连接
内容描述
1 | Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: |
解题方案
思路 1
**- 时间复杂度: O(N)**- 空间复杂度: O(N)**
- 可以将这个二维数组看做一个数组,以二分法查找为最优算法
代码:
1 | /** |