前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode 题目解析之 Spiral Matrix II

Leetcode 题目解析之 Spiral Matrix II

原创
作者头像
ruochen
发布2022-01-10 20:08:58
1.3K0
发布2022-01-10 20:08:58
举报
文章被收录于专栏:若尘的技术专栏

Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.

For example,

Given n = 3,

You should return the following matrix:

[

1, 2, 3 ,

8, 9, 4 ,

7, 6, 5

]

代码语言:txt
复制
    public int[][] generateMatrix(int n) {
        if (n <= 0) {
            return new int[0][0];
        }
        int[][] matrix = new int[n][n];
        int num = 1;
        int startx = 0, endx = n - 1;
        int starty = 0, endy = n - 1;
        while (startx <= endx && starty <= endy) {
            // 上边的行,从左向右
            for (int y = starty; y <= endy; y++) {
                matrix[startx][y] = num++;
            }
            // 右边的列,从上到下
            for (int x = startx + 1; x <= endx; x++) {
                matrix[x][endy] = num++;
            }
            // 如果行或列遍历完,则退出循环
            if (startx == endx || starty == endy) {
                break;
            }
            // 下边的行,从右向左
            for (int y = endy - 1; y >= starty; y--) {
                matrix[endx][y] = num++;
            }
            // 左边的列,从下到上
            for (int x = endx - 1; x >= startx + 1; x--) {
                matrix[x][starty] = num++;
            }
            startx++;
            starty++;
            endx--;
            endy--;
        }
        return matrix;
    }

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档