-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearch2DMatrixII.java
More file actions
242 lines (197 loc) · 6.54 KB
/
Search2DMatrixII.java
File metadata and controls
242 lines (197 loc) · 6.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
package Algorithms.Matrix;
/**
* Integers in each row are sorted in ascending from left to right.
* Integers in each column are sorted in ascending from top to bottom.
* @author Srinivas Vadige, srinivas.vadige@gmail.com
* @since 11 March 2025
*/
public class Search2DMatrixII {
public static void main(String[] args) {
int[][] 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}};
int target = 20;
System.out.println("searchMatrix(matrix, target) => " + searchMatrix(matrix, target));
System.out.println("searchMatrixMyApproach(matrix, target) => " + searchMatrixMyApproach(matrix, target));
}
/**
@TimeComplexity: O(m+n)
@SpaceComplexity: O(1)
19 inside ---
[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]
5 inside ---
[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]
20 inside ---
[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]
Here start from 1st row's last col --->
Because at that point only one side(down) is increasing and other side(left) is decreasing
*/
public static boolean searchMatrix(int[][] matrix, int target) {
int row = 0, col = matrix[0].length - 1;
while (row < matrix.length && col >= 0) {
if (matrix[row][col] == target) return true;
else if (matrix[row][col] > target) col--; // --- move left
else row++; // matrix[row][col] < target --- move down
}
return false;
}
public static boolean searchMatrix2(int[][] matrix, int target) {
// step 1 - initialize starting position at the top-right corner
int row = 0;
int col = matrix[0].length-1;
// step 2 - traverse the matrix
while(row < matrix.length && col >= 0){
// step 3 - get current element
int current = matrix[row][col];
// step 4 - check if current element is target
if(current == target){
return true;
}
// step 5 - if current element is greater than target than, move left
else if(current > target){
col--;
}
// step 6 - if current element is smaller than target, move down
else{
row++;
}
}
// step 7 - return false if target not found
return false;
}
/**
* @TimeComplexity O(m*long(n))
* @SpaceComplexity O(1)
*/
public static boolean searchMatrixUsingBinarySearch1(int[][] matrix, int target) {
for (int i = 0; i < matrix.length; i++) {
if (binarySearch(matrix[i], target)) return true;
}
return false;
}
private static boolean binarySearch(int[] mat, int target){
int low=0,
high=mat.length-1,
mid=0;
while(low<=high){
mid=((high-low)>>1)+low;
if(mat[mid]==target){
return true;
}else if(mat[mid]<target){
low=mid+1;
}else{
high=mid-1;
}
}
return false;
}
public static boolean searchMatrixUsingBinarySearch2(int[][] matrix, int target) {
int row=matrix.length,
col=matrix[0].length;
if(row>col){
for(int i=0; i<col; i++){
if(matrix[0][i]<=target && target<=matrix[row-1][i]){
if(binarySearchCol(matrix, i, target)){
return true;
}
}
}
return false;
}else{
for(int i=0; i<row; i++){
if(matrix[i][0]<=target && target<=matrix[i][col-1]){
if(binarySearch(matrix[i], target)){
return true;
}
}
}
return false;
}
}
private static boolean binarySearchCol(int[][] mat, int i, int target){
int low=0,
high=mat.length-1,
mid=0;
while(low<=high){
mid=((high-low)>>1)+low;
if(mat[mid][i]==target){
return true;
}else if(mat[mid][i]<target){
low=mid+1;
}else{
high=mid-1;
}
}
return false;
}
public boolean searchMatrixLinearTimeComplexity(int[][] matrix, int target) {
int m=matrix.length, n=matrix[0].length;
int j=0;
for (; j<n; j++){
if (matrix[0][j] == target) return true;
else if(matrix[0][j] > target) {
j--;
break;
}
//System.out.printf("j: %s\n", j);
}
if (j<0) return false;
else if (j==n) j--;
while(j>=0) {
for(int i=1; i<m; i++){
//System.out.printf("i: %s, j: %s\n", i, j);
if(matrix[i][j]==target) return true;
}
j--;
}
return false;
}
/**
FAILING FOR : 20 in [[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]]
PATTERNS:
--------
1) First trav through the first row ----> if (matrix[0][i] > target)
*/
public static boolean searchMatrixMyApproach(int[][] matrix, int target) {
// find for range
int m=matrix.length, n=matrix[0].length;
// scan col row & set max col i.e n
int j=0, newN = 0;
for (; j<n; j++){
if(matrix[0][j] == target || matrix[m-1][j] == target) return true;
else if (!(matrix[0][j] < target && matrix[m-1][j] > target)) {
newN=j;
break;
}
}
// not found in above loop
if (j==n) return false;
else n=newN;
// scan each row & set max row i.e m
int i=0, newM=0;
for(; i<m; i++) {
if(matrix[i][0] == target || matrix[i][n-1] == target) return true;
else if (!(matrix[i][0] < target)) {
newM=i;
break;
}
}
// not found in above loop
if (i==m) return false;
else m=newM;
for(i=0; i<m; i++) {
for(j=0; j<n; j++) if(matrix[i][j]==target) return true;
}
return false;
}
}