码迷,mamicode.com
首页 > 其他好文 > 详细

力扣-48-转转图像

时间:2020-07-12 17:12:31      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:tar   图像   image   etc   tco   cto   size   nbsp   oid   

传送门

将n×n的矩阵旋转90度,而且不能额外开辟新的空间

可以分为两步骤:①、矩阵转置;②、对矩阵的每一列,关于纵轴对换。

算法复杂度$O(n^{2})$

#include <algorithm>
using namespace std;

class Solution {
public:
    void rotate(vector<vector<int>>& matrix) {
       int n =  matrix.size();
        
        /*先转置矩阵*/
        for(int i = 0; i < n; i++)
            for(int j = 0; j <= i; j++){
                int temp;
                temp = matrix[i][j];
                matrix[i][j] = matrix[j][i];
                matrix[j][i] = temp;
            }
        
        /*再一列一列地换*/
        for(int j = 0; j < n/2; j++)
            for(int i = 0; i < n; i++){
                int temp;
                temp = matrix[i][j];
                matrix[i][j] = matrix[i][n - 1 - j];
                matrix[i][n - 1 -j] = temp;
            }
    }
};

 

力扣-48-转转图像

标签:tar   图像   image   etc   tco   cto   size   nbsp   oid   

原文地址:https://www.cnblogs.com/xiazhenbin/p/13288487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!