Spiral Matrix II
Given a positive integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order.
(螺旋式生成矩阵)
Example:
1. 方向模拟
事先定义四个方向,按照题中的螺旋式的方向在遍历矩阵,过程中遇到边界时不断的修改方向并修改新的边界。具体实现过程如下:
(与Spiral Matrix类似)
1 | class Solution: |
Given a positive integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order.
(螺旋式生成矩阵)
Example:
事先定义四个方向,按照题中的螺旋式的方向在遍历矩阵,过程中遇到边界时不断的修改方向并修改新的边界。具体实现过程如下:
(与Spiral Matrix类似)
1 | class Solution: |