-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearcha2DMatrixII.java
More file actions
70 lines (69 loc) · 1.92 KB
/
Searcha2DMatrixII.java
File metadata and controls
70 lines (69 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package medium;
/**
* ClassName: Searcha2DMatrixII.java
* Author: chenyiAlone
* Create Time: 2019/5/15 16:34
* Description: No.240
* 思路:
* 1. binary search row start element
* 2. bianry search row that start element less than target and end element higher than target
*
*
*
* 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 in ascending from left to right.
* Integers in each column are sorted in ascending from top to bottom.
* Example:
*
* Consider the following matrix:
*
* [
* [1, 4, 7, 11, 15],
* [2, 5, 8, 12, 19],
* [3, 6, 9, 16, 22],
* [10, 13, 14, 17, 24],
* [18, 21, 23, 26, 30]
* ]
* Given target = 5, return true.
*
* Given target = 20, return false.
*/
public class Searcha2DMatrixII {
public boolean searchMatrix(int[][] matrix, int target) {
int m = matrix.length;
if (m == 0)
return false;
int n = matrix[0].length;
if (n == 0)
return false;
boolean res = false;
int ll = 0, lr = m - 1;
while (ll <= lr) {
int mid = (ll + lr) >> 1;
if (target < matrix[mid][0]) {
lr = mid - 1;
} else {
ll = mid + 1;
}
}
ll = (ll == m) ? m - 1 : (ll < 0 ? 0 : ll);
while (ll >= 0) {
if (matrix[ll][n - 1] >= target) {
int l = 0, r = n - 1;
while (l <= r) {
int mid = (l + r) >> 1;
if (matrix[ll][mid] < target) {
l = mid + 1;
} else if (target < matrix[ll][mid]) {
r = mid - 1;
} else {
return true;
}
}
}
ll--;
}
return false;
}
}