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

leetcode || 48、Rotate Image

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

标签:leetcode   矩阵   转置   

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

标签:leetcode   矩阵   转置   

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

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