题目
Given a positive integer n
, generate an n x n
matrix
filled with elements from 1
to n2
in spiral order.
Example 1:
Input: n = 3
Output: [[1,2,3],[8,9,4],[7,6,5]]
Example 2:
Input: n = 1
Output: [[1]]
Constraints:
1 <= n <= 20
思路
初始化矩阵,随后遍历。
代码
python版本:
class Solution:
def generateMatrix(self, n: int) -> List[List[int]]:
matrix = [[0 for _ in range(n)] for _ in range(n)]
direction = [(0, 1), (1, 0), (0, -1), (-1, 0)]
def travel(i, j, cnt, d):
matrix[i][j] = cnt
x, y = direction[d]
if 0 <= i+x < n and 0 <= j+y < n and matrix[i+x][j+y] == 0:
travel(i+x, j+y, cnt+1, d)
else:
d = (d+1) % 4
x, y = direction[d]
if 0 <= i+x < n and 0 <= j+y < n and matrix[i+x][j+y] == 0:
travel(i+x, j+y, cnt+1, d)
else:
return
travel(0, 0, 1, 0)
return matrix
# 🐂🍺遍历
def generateMatrix(self, n):
A = [[0] * n for _ in range(n)]
i, j, di, dj = 0, 0, 0, 1
for k in xrange(n*n):
A[i][j] = k + 1
if A[(i+di)%n][(j+dj)%n]:
di, dj = dj, -di
i += di
j += dj
return A