首页 > 其他 > 详细

leetcode || 48、Rotate Image

时间:2015-03-30 18:50:21      阅读:160      评论:0      收藏:0      [点我收藏+]

problem:

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?

Hide Tags
 Array
题意:将一个矩阵顺时针旋转90度

thinking:

(1)题目要求原址操作

(2)先将矩阵 转置,再将矩阵沿中间对称左右翻转


code:

class Solution {
public:
    void rotate(vector<vector<int> > &matrix) {
        int dim = matrix.size();
        int temp = 0;
        for (int i = 0; i < dim; ++i) { //转置
            for (int j = i+1; j < dim; ++j) {
                temp = matrix[i][j];
                matrix[i][j] = matrix[j][i];
                matrix[j][i] = temp;
            }
        }
        for (int i = 0; i < dim/2; ++i) { //对称变换
            for (int j = 0; j < dim; ++j) {
                temp = matrix[j][i];
                matrix[j][i] = matrix[j][dim - i -1];
                matrix[j][dim - i -1] = temp;
            }
        }
    }
};


leetcode || 48、Rotate Image

原文:http://blog.csdn.net/hustyangju/article/details/44753005

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!