-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspiral_print.py
79 lines (57 loc) · 1.48 KB
/
spiral_print.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
Print 2-D array in spiral order
Commented code show traversing using while loop
"""
def spiral_traverse(matrix):
if not len(matrix): return
top = left = 0
bottom = len(matrix)-1
right = len(matrix[0]) -1
dir = 0
while top <= bottom:
# go right
if dir == 0:
# i = left
for i in range(left, right+1):
# while i <= right:
yield matrix[top][i]
# i += 1
top += 1
# go down
elif dir == 1:
# j = top
for j in range(top, bottom+1):
# while j <= bottom:
yield matrix[j][right]
# j += 1
right -= 1
# go left
elif dir == 2:
# k = right
for k in range(right, left-1, -1):
# while k >= left:
yield matrix[bottom][k]
# k -= 1
bottom -= 1
# go up
else:
# p = bottom
for p in range(bottom, top-1, -1):
# while p >= top:
yield matrix[p][left]
# p -= 1
left += 1
# change direction
dir = (dir + 1) % (len(matrix))
matrix = [[2,4,6,8],
[5,9,12,16],
[2,11,5,9],
[3,2,1,8]]
# matrix = [[1,2,3],
# [4,5,6],
# [7,8,9]]
# matrix = [[1,2],
# [4,5],
# [7,8]]
# matrix = []
print([data for data in spiral_traverse(matrix)])