leetcode48旋转图像

Posted lisin-lee-cooper

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode48旋转图像相关的知识,希望对你有一定的参考价值。

一.问题描述

  • 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。

  • 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。

旋转图像

  • 示例 1:

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

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

二.示例代码

public static void main(String[] args) {
        int[][] matrix = new int[3][3];
        matrix[0] = new int[]{1, 2, 3};
        matrix[1] = new int[]{4, 5, 6};
        matrix[2] = new int[]{7, 8, 9};
        int[][] result = rotate(matrix);
    }

    public static int[][] rotate(int[][] matrix) {
        int n = matrix.length;
        int[][] matrix_new = new int[n][n];
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n; ++j) {
                matrix_new[j][n - i - 1] = matrix[i][j];
            }
        }
        return matrix_new;
    }

以上是关于leetcode48旋转图像的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 每日一题 48. 旋转图像

leetcode 每日一题 48. 旋转图像

LeetCode:旋转图像48

LeetCode(48):旋转图像

LeetCode——48. 旋转图像

Leetcode题目48.旋转图像(中等)