forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_498.java
71 lines (61 loc) · 1.52 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
package com.fishercoder.solutions;
/**
* 498. Diagonal Traverse
*
* Given a matrix of m x N elements (m rows, N columns), return all elements of the matrix in diagonal order
* as shown in the below image.
Example:
Input:
[
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
]
Output: [1,2,4,7,5,3,6,8,9]
Note:
The total number of elements of the given matrix will not exceed 10,000.
*/
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;
}
}
}