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

LeetCode[Array]: Rotate Image

时间:2014-12-04 21:43:42      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:rotate image   leetcode   array   旋转   算法   

You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?

参考LeetCode[Array]: Spiral Matrix II的迭代思路,先完成最外环的旋转,然后依次旋转内环。我的C++代码如下:

void rotate(vector<vector<int> > &matrix) {
    int beginRow = 0, endRow = matrix.size() - 1, beginCol = 0, endCol = matrix[0].size() - 1;
    while (beginRow <= endRow && beginCol <= endCol) {
        for (int i = 0; i < endCol - beginCol; ++i) {
            int tmp                               = matrix[beginRow    ][beginCol + i];
            matrix[beginRow    ][beginCol + i] = matrix[  endRow - i][beginCol      ];
            matrix[  endRow - i][beginCol    ] = matrix[  endRow    ][  endCol - i];
            matrix[  endRow    ][  endCol - i] = matrix[beginRow + i][  endCol    ];
            matrix[beginRow + i][  endCol    ] = tmp;
        }

        ++beginRow; --endRow;
        ++beginCol; --endCol;
    }
}


在Discuss上看到一个比较奇特的解法,其思路是:首先将矩阵上下倒置,然后沿左上到右下的对角线对折即可完成旋转,其C++代码实现非常简洁:

void rotate(vector<vector<int> > &matrix) 
{
    reverse(matrix.begin(), matrix.end());
    for (unsigned i = 0; i < matrix.size(); ++i)
        for (unsigned j = i+1; j < matrix[i].size(); ++j)
            swap (matrix[i][j], matrix[j][i]);
}


LeetCode[Array]: Rotate Image

标签:rotate image   leetcode   array   旋转   算法   

原文地址:http://blog.csdn.net/chfe007/article/details/41729425

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