【数组篇】day20_54. 螺旋矩阵

举报
小林学算法丶 发表于 2024/03/22 14:37:05 2024/03/22
【摘要】 给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。 示例 1:输入: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  n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。

 

示例 1:

1.jpg

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

示例 2:

2.jpg

输入: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

【题解】

题解:

思路:

  • 定义一个与原数组一样大小的数组,用于标记元素是否访问

  • 按照题意可知,顺时针螺旋顺序 访问数组,元素依次向 右->下->左->上 方向移动

复杂度:

  • 时间复杂度:O(mn
  • 空间复杂度:O(mn
class Solution {
    public List<Integer> spiralOrder(int[][] matrix) {
        List<Integer> res = new ArrayList<>();
        if (matrix == null || matrix.length == 0 || matrix[0].length == 0) {
            return res;
        }

        int m = matrix.length;
        int n = matrix[0].length;
        // 标记元素是否访问
        boolean[][] visited = new boolean[m][n];

        // 坐标位移方向 右->下->左->上
        int[][] dirs = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};

        // 元素总数
        int total = m * n;
        int row = 0, column = 0;
        int dirIndex = 0;
        for (int i = 0; i < total; i++) {
            res.add(matrix[row][column]);
            visited[row][column] = true;

            // 下一个元素的坐标
            int nextRow = row + dirs[dirIndex][0], nextColumn = column + dirs[dirIndex][1];
            // 判断是否越界
            if (nextRow < 0 || nextRow >= m || nextColumn < 0 || nextColumn >= n || visited[nextRow][nextColumn]) {
                // 改变位移方向
                dirIndex = (dirIndex + 1) % 4;
            }

            row += dirs[dirIndex][0];
            column += dirs[dirIndex][1];
        }
        return res;
    }
}

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。