forked from HuberTRoy/leetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpiralMatrixII.py
115 lines (94 loc) · 3.04 KB
/
SpiralMatrixII.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
"""
Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
Example:
Input: 3
Output:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
]
想清楚在写。
beat 94%
测试地址:
https://leetcode.com/problems/spiral-matrix-ii/description/
"""
class Solution(object):
def generateMatrix(self, n):
"""
:type n: int
:rtype: List[List[int]]
"""
maps = [[0 for i in range(n)] for j in range(n)]
current_value = [i for i in range(1, n*n+1)]
current_value.reverse()
def makeXY(x, y):
# up
# down
# right
# left
return [(x, y-1),
(x, y+1),
(x+1, y),
(x-1, y)]
def right(x, y):
while 1:
if not current_value:
return maps
xy = makeXY(x, y)
if (y > -1 and x > -1) and (y < n and x < n):
if maps[y][x] == 0:
maps[y][x] = current_value.pop()
y, x = xy[2][1], xy[2][0]
else:
# down
return down(x-1, y+1)
else:
# down
return down(x-1, y+1)
def down(x, y):
while 1:
if not current_value:
return maps
xy = makeXY(x, y)
if (y > -1 and x > -1) and (y < n and x < n):
if maps[y][x] == 0:
maps[y][x] = current_value.pop()
y, x = xy[1][1], xy[1][0]
else:
# left
return left(x-1, y-1)
else:
# left
return left(x-1, y-1)
def left(x, y):
while 1:
if not current_value:
return maps
xy = makeXY(x, y)
if y > -1 and x > -1 and y < n and x < n:
if maps[y][x] == 0:
maps[y][x] = current_value.pop()
y, x = xy[3][1], xy[3][0]
else:
# up
return up(x+1, y-1)
else:
# up
return up(x+1, y-1)
def up(x, y):
while 1:
if not current_value:
return maps
xy = makeXY(x, y)
if y > -1 and x > -1 and y < n and x < n:
if maps[y][x] == 0:
maps[y][x] = current_value.pop()
y, x = xy[0][1], xy[0][0]
else:
# right
return right(x+1, y+1)
else:
# right
return right(x+1, y+1)
return right(0, 0)