forked from Sunchit/Coding-Decoded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiagonalTraversal.java
45 lines (43 loc) · 1.07 KB
/
DiagonalTraversal.java
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
class Solution {
//TC : O(m*n)
// SC : O(m*n)
public int[] findDiagonalOrder(int[][] matrix) {
int m= matrix.length;
if(m==0){
return new int[]{};
}
int n = matrix[0].length;
if(n ==0 ){
return new int[]{};
}
int[] ans = new int[m*n];
int row =0;
int col=0;
for(int i=0;i<m*n;i++){
ans[i] = matrix[row][col];
if((row+col)%2==0){
// even sum means upwards
// row-- col++
if(col == n-1){
row++;
} else if(row ==0){
col++;
} else{
row--;
col++;
}
} else{
// odd sum means downwards
if(row ==m-1){
col++;
} else if(col==0){
row++;
} else{
row++;
col--;
}
}
}
return ans;
}
}