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

48. Rotate Image

时间:2016-05-07 12:55:45      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 48. Rotate Image 
     * 2016-5-6 by Mingyang
     * 这个题目自己完全做出来了,四个点的坐标完全找出来了
     * 唯一美中不足的就是j的位置我没有找对,在开始的时候我把j是小于二分之n
     */
    public void rotate(int[][] matrix) {
        int n = matrix.length;
        for (int i = 0; i < n / 2; i++) {
            for (int j = 0; j < (n+1)/2; j++) {
                int temp = matrix[i][j];
                matrix[i][j] = matrix[n - 1 - j][i];
                matrix[n - 1 - j][i] = matrix[n - 1 - i][n - 1 - j];
                matrix[n - 1 - i][n - 1 - j] = matrix[j][n - 1 - i];
                matrix[j][n - 1 - i] = temp;
            }
        }
    }

 

48. Rotate Image

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5467815.html

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