-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSpirallyTraversingMatrix.py
56 lines (52 loc) · 1.33 KB
/
SpirallyTraversingMatrix.py
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
'''
Given a matrix of m * n elements (m rows, n columns), return all elements of the matrix in spiral order.
Example:
Given the following matrix:
[
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
]
You should return: [1, 2, 3, 6, 9, 8, 7, 4, 5]
'''
def spiral_order_matrix(matrix):
top = 0
bottom = len(matrix) - 1
left = 0
right = len(matrix[0]) - 1
result = []
direction = 0
'''
There are 4 directions:
0 --> right
1 --> bottom
2 --> left
3 --> up
'''
while left <= right and top <= bottom:
if direction == 0:
for i in range(left, right + 1):
result.append(matrix[top][i])
top += 1
elif direction == 1:
for i in range(top, bottom+1):
result.append(matrix[i][right])
right -= 1
if direction == 2:
for i in range(right, left-1, -1):
result.append(matrix[bottom][i])
bottom -= 1
if direction == 3:
for i in range(bottom, top-1, -1):
result.append(matrix[i][left])
left += 1
direction = (direction + 1) % 4
return result
if __name__ == '__main__':
matrix = [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ],
[10, 11, 12]
]
print(spiral_order_matrix(matrix))