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

顺时针旋转矩阵

时间:2016-04-03 14:41:42      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

题目描述

有一个NxN整数矩阵,请编写一个算法,将矩阵顺时针旋转90度。

给定一个NxN的矩阵,和矩阵的阶数N,请返回旋转后的NxN矩阵,保证N小于等于300。

测试样例:
[[1,2,3],[4,5,6],[7,8,9]],3
返回:[[7,4,1],[8,5,2],[9,6,3]]

Solution 1:
class Rotate {
public:
    vector<vector<int> > rotateMatrix(vector<vector<int> > mat, int n) {
        // write code here
        vector<vector<int> > v;
        vector<int> temp;
        for(int i = 0; i < n; ++i) {
            for(int j = n - 1; j >= 0; --j) {
                temp.push_back(mat[j][i]);
            }
            v.push_back(temp);
            temp.erase(temp.begin(), temp.end());
        }
        return v;        
    }
};

顺时针旋转矩阵

标签:

原文地址:http://www.cnblogs.com/xuyan505/p/5349791.html

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