Leetcode 59. Spiral Matrix II 螺旋矩阵 II

Leetcode 59. Spiral Matrix II 螺旋矩阵 II

标签: Leetcode


题目地址:https://leetcode-cn.com/problems/spiral-matrix-ii/

题目描述

给定一个正整数 n,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。

示例:

输入: 3
输出:
[
 [ 1, 2, 3 ],
 [ 8, 9, 4 ],
 [ 7, 6, 5 ]
]

算法思想

和之前的那个螺旋矩阵几乎一样,把遍历变成输入进去即可,并没有什么不同的地方,同样用几个方向,根据res是否为None作为判断即可。详情可参考旋转矩阵这篇文章。

python代码

class Solution(object):
    def generateMatrix(self, n):
        """
        :type n: int
        :rtype: List[List[int]]
        """
        res = [[None]*n for _ in range(n)]

        x,y,nx,ny = 0,0,0,1
        for i in range(n*n):
            res[x][y] = i+1
            if not res[(x+nx)%n][(y+ny)%n] is None:# 说明来过了,换方向
                nx, ny = ny, -nx
            x+=nx
            y+=ny
        return res
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值