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

leetcode1219

时间:2020-12-24 11:57:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:for   public   mat   class   简单   线性   cto   loading   思路   

技术图片

原地交换:
思路很简单先对角线对称交换,再左右对称交换就可以得到旋转90度。
线性代数证明方法:等我复习完orz
class Solution {
public:
    void rotate(vector<vector<int>>& matrix) {
        int n = matrix.size();
        for(int i = 0; i < n; ++i) {
            for(int j = i + 1; j < n; ++j) {
                swap(matrix[i][j], matrix[j][i]);
            }
        }
        for(int i = 0; i < n; ++i) {
            for(int j = 0; j < n / 2; ++j) {
                swap(matrix[i][j], matrix[i][n - 1 - j]);
            }
        }
    }
};

leetcode1219

标签:for   public   mat   class   简单   线性   cto   loading   思路   

原文地址:https://www.cnblogs.com/lightac/p/14159940.html

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