-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiddle_111_54_Spiral Matrix.java
57 lines (57 loc) · 1.16 KB
/
Middle_111_54_Spiral Matrix.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
public class Solution {
private final int RIGHT = 1;
private final int DOWN = 2;
private final int LEFT = 3;
private final int UP = 4;
public List<Integer> spiralOrder(int[][] matrix) {
List<Integer> list = new ArrayList<Integer>();
int row = matrix.length;
if(row==0)
return list;
int col = matrix[0].length;
boolean[][] visited = new boolean[row][col];
int count = 0,direction = RIGHT,i=0,j=0;
while (count < row * col) {
list.add(matrix[i][j]);
visited[i][j] = true;
switch (direction) {
case RIGHT:
if (j==col-1 || visited[i][j+1]) {
direction=DOWN;
i++;
}
else
j++;
break;
case DOWN:
if (i==row-1 || visited[i+1][j]) {
direction = LEFT;
j--;
}
else
i++;
break;
case LEFT:
if (j==0 || visited[i][j-1]) {
direction = UP;
i--;
}
else
j--;
break;
case UP:
if (visited[i-1][j]) {
direction = RIGHT;
j++;
}
else
i--;
break;
default:
break;
}
count++;
}
return list;
}
}