数据结构与算法(Java) 22:转圈打印矩阵

题目 给定一个整型矩阵matrix,请按照转圈的方式打印它。 例如:

1 2 3 4

5 6 7 8

9 10 11 12

13 14 15 16

打印结果为:1,2,3,4,8,12,16,15,14,13,9, 5,6,7,11, 10

要求 额外空间复杂度为O(1)。

思路 递归地一圈一圈打印。

package algorithm.section4;

public class PrintMatrixSpiralOrder {
    public static void printMatrix(int[][] matrix){
        int top = 0;
        int bottom = matrix.length - 1;
        int left = 0;
        int right = matrix[0].length - 1;

        while (top <= bottom && left <= right)
            printEdge(matrix, top++, bottom--, left++, right--);
    }

    public static void printEdge(int[][] matrix, int top, int bottom, int left, int right){
        if (top < bottom && left < right){
            for (int i = left; i < right; i++) System.out.print(matrix[top][i] + " ");
            for (int i = top; i < bottom; i++) System.out.print(matrix[i][right] + " ");
            for (int i = right; i > left; i--) System.out.print(matrix[bottom][i] + " ");
            for (int i = bottom; i > top; i--) System.out.print(matrix[i][left] + " ");
        } else if (top < bottom) {
            for (int i = top; i <= bottom; i++) System.out.print(matrix[i][left] + " ");
        } else {
            for (int i = left; i <= right; i++) System.out.print(matrix[top][i] + " ");
        }
    }

    public static void main(String[] args){
        int[][] matrix = {
                { 1, 2, 3, 4 },
                { 5, 6, 7, 8 },
                { 9, 10, 11, 12 },
                { 13, 14, 15, 16 }
        };
        printMatrix(matrix);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值