旋转一个矩阵

Posted zzas12345

tags:

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

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

Rotate the image by 90 degrees (clockwise).

Note:

You have to rotate the image in-place, which means you have to modify the input 2D matrix directly. DO NOT allocate another 2D matrix and do the rotation.

思路:转置在中心对称线交换

 

class Solution {
public:
void rotate(vector<vector<int>>& matrix) {
int row=matrix.size();
int col=matrix[0].size();
for(int i=0;i<row;++i){
for(int j=0;j<i;++j){
swap(matrix[i][j],matrix[j][i]);
}
}
for(int i=0;i<row;++i){
int l=0,r=row-1;
while(l<r){
swap(matrix[i][l],matrix[i][r]);
l++;r--;
}
}
}
};

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

Leecode-48:旋转图像(矩阵顺时针旋转90度)

旋转矩阵的三维空间

MATLAB 利用旋转矩阵来编写一个旋转图像的函数 只要对就再追加100分

分解旋转矩阵

旋转矩阵和变换矩阵的概念和区别

顺时针旋转矩阵