首页 > 其他 > 详细

54. 螺旋矩阵 + 蛇形矩阵打印 + 螺旋矩阵

时间:2021-03-07 22:06:36      阅读:30      评论:0      收藏:0      [点我收藏+]

54. 螺旋矩阵

LeetCode_54

相似题目:剑指 Offer 29. 顺时针打印矩阵

题目描述

技术分享图片

代码实现

class Solution {
    public List<Integer> spiralOrder(int[][] matrix) {
        int m = matrix.length;//行
        int n = matrix[0].length;//列
        int total = m * n;
        int[][] direction = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};//螺旋矩阵的方向数组
        List<Integer> list = new ArrayList<>();
        int currenti = 0, currentj = 0;
        int currentD = 0;//当前旋转的方向---右下左上
        boolean[][] isTravel = new boolean[m][n];
        for(int i = 0; i< total; i++){
            list.add(matrix[currenti][currentj]);
            isTravel[currenti][currentj] = true;
            int tempi = currenti + direction[currentD][0];
            int tempj = currentj + direction[currentD][1];
            if(tempi < 0 || tempi >= m || tempj < 0 || tempj >=n || isTravel[tempi][tempj]){
                currentD = (currentD + 1) % 4;
            }
            currenti = currenti + direction[currentD][0];
            currentj = currentj + direction[currentD][1];
        }
        return list;
    }
}

54. 螺旋矩阵 + 蛇形矩阵打印 + 螺旋矩阵

原文:https://www.cnblogs.com/GarrettWale/p/14496176.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!