给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。
输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
输出:[1,2,3,6,9,8,7,4,5]
示例 2:
输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
输出:[1,2,3,4,8,12,11,10,9,5,6,7]
提示:
m == matrix.length
n == matrix[i].length
1 <= m, n <= 10
-100 <= matrix[i][j] <= 100
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/spiral-matrix
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
这道题可以按照每层进行遍历,从最外面一层一层一层向里面遍历,
当用四个变量left,right,top,bottom来表示层的四个顶点
第一层也就是最外面一层:
一开始从左向右:从left->right+1
然后从上向下:从top+1->bottom
然后当left
然后从下向上:从bottom-1->top
所有均为下标
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
if not matrix or not matrix[0]:
return list()
row = len(matrix)
column = len(matrix[0])
left,right,top,bottom = 0,column-1,0,row-1
res = []
while left <= right and top <= bottom:
for i in range(left, right+1):
res.append(matrix[top][i])
for j in range(top+1, bottom+1):
res.append(matrix[j][right])
if left < right and top < bottom:
for k in range(right-1,left, -1):
res.append(matrix[bottom][k])
for h in range(bottom,top, -1):
res.append(matrix[h][left])
left,right,top,bottom = left+1, right-1, top+1, bottom-1
return res