-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy path0240. Search a 2D Matrix II.js
94 lines (85 loc) · 2.54 KB
/
0240. Search a 2D Matrix II.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// 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.
//
// 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]
// ]
//
// Example 1:
//
// Input: matrix, target = 5
// Output: true
//
// Example 2:
//
// Input: matrix, target = 20
// Output: false
// 1) Brute force
// Time O(mn)
// Space O(1)
const searchMatrix1 = (matrix, target) => {
if (matrix == null || matrix.length === 0) return false;
for (let i = 0; i < matrix.length; i++) {
for (let j = 0; j < matrix[0].length; j++) {
if (matrix[i][j] === target) return true;
}
}
return false;
};
// 2) Recursion
const searchMatrix2 = (matrix, target) => {
if (matrix == null || matrix.length === 0) return false;
const h = matrix.length;
const w = matrix[0].length;
const go = (i, j) => {
if (
i >= h
|| j >= w
|| matrix[i][j] > target
|| matrix[i][j] === '*'
) return false;
if (matrix[i][j] === target) return true;
matrix[i][j] = '*'; // mark visited
return go(i + 1, j) || go(i, j + 1);
};
return go(0, 0)
};
// 3) Binary Search
// https://leetcode.com/problems/search-a-2d-matrix-ii/solution/
// 4) Search from top right corner
// Similar
// 74. Search a 2D Matrix
//
// Time O(m + n), rule out one row or one column each time
// Space O(1)
//
// Idea
//
// Like tree: https://leetcode.com/problems/search-a-2d-matrix-ii/discuss/66140/My-concise-O(m+n)-Java-solution/68155
// We start search the matrix from top right corner, # initialize the current position to top right corner.
// - If the target is greater than the value in current position,
// then the target can not be in entire row of current position because the row is sorted.
// - If the target is less than the value in current position,
// then the target can not in the entire column because the column is sorted too.
// We can rule out one row or one column each time, so the time complexity is O(m + n).
const searchMatrix = (matrix, target) => {
if (matrix == null || matrix.length === 0) return false;
const h = matrix.length;
const w = matrix[0].length;
let i = 0;
let j = w - 1;
while (j >= 0 && i < h) {
if (matrix[i][j] === target) return true;
else if (matrix[i][j] < target) i++;
else j--;
}
return false;
};