forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_498.java
91 lines (84 loc) · 3 KB
/
_498.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
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
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class _498 {
public static class Solutoin1 {
/**
* Reference: https://discuss.leetcode.com/topic/77865/concise-java-solution/2
* Just keep walking the matrix, when hitting the four borders (top, bottom, left or right),
* just directions and keep walking.
*/
public int[] findDiagonalOrder(int[][] matrix) {
if (matrix == null || matrix.length == 0) {
return new int[0];
}
int m = matrix.length;
int n = matrix[0].length;
int[] result = new int[m * n];
int d = 1;
int i = 0;
int j = 0;
for (int k = 0; k < m * n; ) {
result[k++] = matrix[i][j];
i -= d;
j += d;
if (i >= m) {
i = m - 1;
j += 2;
d = -d;
}
if (j >= n) {
j = n - 1;
i += 2;
d = -d;
}
if (i < 0) {
i = 0;
d = -d;
}
if (j < 0) {
j = 0;
d = -d;
}
}
return result;
}
}
public static class Solutoin2 {
public int[] findDiagonalOrder(int[][] matrix) {
if (matrix == null || matrix.length == 0) {
return new int[0];
}
List<List<Integer>> diagonals = new ArrayList<>();
int maxRow = matrix.length;
int maxCol = matrix[0].length;
int maxDiagonal = maxRow + maxCol - 1;
for (int diagonalIndex = 0; diagonalIndex < maxDiagonal; diagonalIndex++) {
int curRowIdx = (diagonalIndex < maxCol) ? 0 : (diagonalIndex - maxCol + 1);
int curColIdx = (diagonalIndex < maxCol) ? diagonalIndex : (maxCol - 1);
List<Integer> diagonal = new ArrayList<>();
while (curRowIdx >= 0 && curRowIdx < maxRow && curColIdx >= 0 && curColIdx < maxCol) {
int diagonalElement = matrix[curRowIdx][curColIdx];
diagonal.add(diagonalElement);
curRowIdx++;
curColIdx--;
}
diagonals.add(diagonal);
}
int[] result = new int[maxRow * maxCol];
int resultIdx = 0;
for (int i = 0; i < diagonals.size(); i++) {
List<Integer> diagonal = diagonals.get(i);
if (i % 2 == 0) {
Collections.reverse(diagonal);
}
for (int j = 0; j < diagonal.size(); j++) {
result[resultIdx] = diagonal.get(j);
resultIdx++;
}
}
return result;
}
}
}