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

Rotate Image

时间:2014-10-10 12:33:34      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   java   for   sp   div   

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?

答案

public class Solution {
    public void rotate(int[][] matrix) {
        if(matrix==null||matrix.length<=1)
        {
            return ;
        }
        int N=matrix.length-1;
        for(int x=0;x<=N;x++)
        {
            for(int y=0;y<=x&&x+y<N;y++)
            {
                int p=matrix[x][y];
                matrix[x][y]=matrix[N-y][x];
                matrix[N-y][x]=matrix[N-x][N-y];
                matrix[N-x][N-y]=matrix[y][N-x];
                matrix[y][N-x]=p;
            }
        }
    }
}


Rotate Image

标签:style   blog   color   io   ar   java   for   sp   div   

原文地址:http://blog.csdn.net/jiewuyou/article/details/39958813

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