LeetCode 54. 螺旋矩阵
Posted 机器狗mo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 54. 螺旋矩阵相关的知识,希望对你有一定的参考价值。
给定一个包含?m x n?个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。
示例?1:
输入:
[
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
]
输出: [1,2,3,6,9,8,7,4,5]
示例?2:
输入:
[
[1, 2, 3, 4],
[5, 6, 7, 8],
[9,10,11,12]
]
输出: [1,2,3,4,8,12,11,10,9,5,6,7]
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
if not matrix:
return []
rows, columns = len(matrix), len(matrix[0])
left, right, top, bottom = 0, columns - 1, 0, rows - 1 # 四个顶点
ans = []
while True:
for col in range(left, right + 1): ## 上
ans.append(matrix[top][col])
top+=1
if top > bottom: break
for row in range(top, bottom + 1): ## 右
ans.append(matrix[row][right])
right-=1
if left > right: break
for col in range(right, left-1, -1): ## 下
ans.append(matrix[bottom][col])
bottom-=1
if top > bottom: break
for row in range(bottom, top - 1, -1): ## 左
ans.append(matrix[row][left])
left+=1
if left > right: break
return ans
以上是关于LeetCode 54. 螺旋矩阵的主要内容,如果未能解决你的问题,请参考以下文章