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

leetcode_48题——Rotate Image(矩阵计算)

时间:2015-06-01 11:17:32      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

Rotate Image

 Total Accepted: 36552 Total Submissions: 114426My Submissions

 

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
Have you met this question in a re
 
       这道题将矩阵先转置,再将每一行进行旋转就可以了
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;

void rotate(vector<vector<int>>& matrix) {
	int n=matrix.size();
	for(int i=0;i<n;i++)
		for(int j=i;j<n;j++)
		{int temp;temp=matrix[j][i];matrix[j][i]=matrix[i][j];matrix[i][j]=temp;}

		for(int i=0;i<n;i++)
			reverse(matrix[i].begin(),matrix[i].end());
}
int main()
{

}

  

leetcode_48题——Rotate Image(矩阵计算)

标签:

原文地址:http://www.cnblogs.com/yanliang12138/p/4543294.html

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