74.Search-a-2D-Matrix
74. Search a 2D Matrix
题目地址
https://leetcode.com/problems/search-a-2d-matrix-ii/
http://www.lintcode.com/problem/search-a-2d-matrix/description
题目描述
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.
Example 1:
Input:
matrix = [
[1, 3, 5, 7],
[10, 11, 16, 20],
[23, 30, 34, 50]
]
target = 3
Output: true
Example 2:
Input:
matrix = [
[1, 3, 5, 7],
[10, 11, 16, 20],
[23, 30, 34, 50]
]
target = 13
Output: false代码
Approach #1 Brute Force
Approach #2 Binary Search twice
Approach 2: Binary Search Once
因为end = row column - 1; 所以mid的取值范围是从0到row column - 1 matrix[mid / column][mid % column]里mid/column是判断其在第几行 mid % column是判断其在第几列
Last updated
Was this helpful?