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

Rotate Image

时间:2015-06-16 10:37:52      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

这题有三种思路:

思路一:

找到移动前后移动后位置的关系,直接交换位置,但是这样做需要额外的空间。

思路二:

每次移动一位,直到旋转90度。

思路三:

转:http://www.2cto.com/kf/201401/274473.html

技术分享

使用3的代码应该是最简洁的。

class Solution {
public:
    void rotate(vector<vector<int>>& matrix) {
        int i,j,temp;
        int n=matrix.size();
        // 沿着副对角线反转
        for (int i = 0; i < n; ++i) {
            for (int j = 0; j < n - i; ++j) {
                temp = matrix[i][j];
                matrix[i][j] = matrix[n - 1 - j][n - 1 - i];
                matrix[n - 1 - j][n - 1 - i] = temp;
            }
        }
        // 沿着水平中线反转
        for (int i = 0; i < n / 2; ++i){
            for (int j = 0; j < n; ++j) {
                temp = matrix[i][j];
                matrix[i][j] = matrix[n - 1 - i][j];
                matrix[n - 1 - i][j] = temp;
            }
        }
        
    }
};

 

Rotate Image

标签:

原文地址:http://www.cnblogs.com/qiaozhoulin/p/4579906.html

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