代码-模拟题¶
概述¶
- 模拟题目不一定属于某个类别,关键在于需要按照逻辑顺序实现代码
题目¶
54. 螺旋矩阵¶
题解:
- 本题关键在于如何模拟过程,每一步都需要考虑清楚边界条件
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
left, right, top, bottom = 0, len(matrix[0]) - 1, 0, len(matrix) - 1
res = []
while True:
for i in range(left, right + 1):
res.append(matrix[top][i])
top += 1
if top > bottom:
break
for i in range(top, bottom + 1):
res.append(matrix[i][right])
right -= 1
if left > right:
break
for i in range(right, left - 1, -1):
res.append(matrix[bottom][i])
bottom -= 1
if top > bottom:
break
for i in range(bottom, top - 1, -1):
res.append(matrix[i][left])
left += 1
if left > right:
break
return res