-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpiralMatrix.java
66 lines (60 loc) · 1.09 KB
/
SpiralMatrix.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
import java.util.ArrayList;
import java.util.List;
public class SpiralMatrix
{
public static void main(String[] args)
{
int[][] matrix = {{1,2,3},
{4,5,6},
{7,8,9}};
// System.out.println(spiralOrder(matrix));
spiralOrder(matrix);
}
static List<Integer> spiralOrder(int[][] matrix)
{
List<Integer> ans = new ArrayList<>();
int up = 0;
int down =matrix.length-1;
int left = 0;
int right = matrix[0].length-1;
//loop while still in the matrix boundries
while(up <= down && left <= right)
{
//move right
for(int i = left; i<= right; i++)
{
ans.add(matrix[up][i]);
}
//Set the top row pointer down to the next row
up++;
//
//Move down
for(int i = up; i<= down; i++)
{
ans.add(matrix[i][right]);
}
//Move column pointer to left
right--;
//Move left
if(up <= down)
{
for(int i = right; i>= left; i--)
{
ans.add(matrix[down][i]);
}
}
//Set bottom row pointer to next row up
down--;
//move up
if(left <= right)
{
for(int i = down; i>= up; i--){
ans.add(matrix[i][left]);
}
}
//set left coulmn pointer to next column to the right
left++;
}
return ans;
}
}