90度旋转矩阵

Posted fdwzy

tags:

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

先左右对称反转,再沿右对角线对折,面试记住就行了

代码:

 1 class Solution {
 2 public:
 3     void rotate(vector<vector<int>>& matrix) {
 4         int len = matrix.size();
 5         //左右翻
 6         for(int i=0;i<len;i++){
 7             for(int j=0;j<len/2;j++){
 8                 int temp = matrix[i][j];
 9                 matrix[i][j] = matrix[i][len-1-j];
10                 matrix[i][len-1-j] = temp;
11             }
12         }
13         //对角线翻转
14         for(int i=0;i<len;i++){
15             for(int j=0;j<len-i;j++){
16                 int temp = matrix[i][j];
17                 matrix[i][j] = matrix[len-1-j][len-1-i];
18                 matrix[len-1-j][len-1-i] = temp;
19             }
20         }
21     }
22 };

 

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

如何将 N x N 矩阵旋转 90 度? [关闭]

将下面矩阵分别按顺时针90度,逆时针90度,和旋转180度,打印出来

90度旋转矩阵

二维数组(矩阵)之将矩阵旋转90度

将一维向量中表示的矩阵旋转 90 度

矩阵的旋转(90度)输出: