【leetcode】第48题 Rotate Image 题目+解析+代码

来源:互联网 发布:js有哪些内置对象 编辑:程序博客网 时间:2024/05/29 19:11

【题目】

You are given an n x n 2D matrix representing an image.

Rotate the image by 90 degrees (clockwise).

Follow up:
Could you do this in-place?

【解析】

旋转矩阵discuss里一共有三个思想:

1、上下对称后,对角线对称。

2、左右对称后,对角线对称。

3、交换一个圈上的4个元素。

这三个思想都比较简单,这里只写第三个思想的代码。

【代码】

public void rotate(int[][] matrix) {        int temp=0;        int n=matrix.length;        for(int i=0;i<n/2;i++)        {            for(int j=i;j<n-i-1;j++)            {                temp = matrix[i][j];matrix[i][j] = matrix[n - j - 1][i];matrix[n - j - 1][i] = matrix[n - i - 1][n - j - 1];matrix[n - i - 1][n - j - 1] = matrix[j][n - i - 1];matrix[j][n - i - 1] = temp;            }        }    }