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

leetcode 之 Rotate Image

时间:2014-09-10 12:35:50      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:rotate image   旋转矩阵   leetcode   阿里   matrix   

Rotate Image

 

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?

分析:该题是阿里一道笔试题,要想原地旋转,必须要找到规律,matrix[i][j] 会旋转到matrix[j][n-i-1]的位置,然后把i变成j,j变成n-i-1,继续循环

class Solution {
public:
    void rotate(vector<vector<int> > &matrix)
    {
    	int n = matrix.size()-1,i,j,k;
    	for(i = 0;i < n;i++)
    	{
    		for(j = i;i+j < n;j++)
    		{
    			int x = i,y = j;//因为后面要变换下标,这里改用其他变量
    			int pre = matrix[x][y];//对于val1 -> val2,记录val1的值
    			int next;//记录val2的值
    			for(k = 0;k < 4;k++)//每次移动4次
    			{
    				next = matrix[y][n-x];
    				matrix[y][n-x] = pre;
    				pre = next;
    				int tmp = x;
    				x = y;
    				y = n - tmp;
    			}
    		}
    	}
    }
};


leetcode 之 Rotate Image

标签:rotate image   旋转矩阵   leetcode   阿里   matrix   

原文地址:http://blog.csdn.net/fangjian1204/article/details/39178459

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