首页 > 编程语言 > 详细

Rotate Image leetcode java

时间:2014-08-02 10:02:03      阅读:408      评论:0      收藏:0      [点我收藏+]

题目

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?

 

题解

这道题就是考察很直白的旋转坐标。要in place的。画个图自己算算就出来了。

代码如下:

 

 1  /*   public void rotate(int[][] matrix) {
 2         int m = matrix.length;
 3         int n = matrix[0].length;
 4         
 5         int[][] result = new int[m][n];
 6         
 7         for(int i = 0; i<m; i++){
 8             for(int j = 0; j<n; j++){
 9                 result[j][m-1-i] = matrix[i][j];
10             }
11         }
12         
13         for(int i=0;i<m;i++){
14             for(int j=0; j<n; j++){
15                  matrix[i][j] = result[i][j];
16             }
17         }
18     }
19     */
20     
21     //in place
22     public void rotate(int[][] matrix) {
23     int n = matrix.length;
24     for (int i = 0; i < n / 2; i++) {
25         for (int j = 0; j < Math.ceil(((double) n) / 2.); j++) {
26             int temp = matrix[i][j];
27             matrix[i][j] = matrix[n-1-j][i];
28             matrix[n-1-j][i] = matrix[n-1-i][n-1-j];
29             matrix[n-1-i][n-1-j] = matrix[j][n-1-i];
30             matrix[j][n-1-i] = temp;
31         }
32     }

Rotate Image leetcode java,布布扣,bubuko.com

Rotate Image leetcode java

原文:http://www.cnblogs.com/springfor/p/3886487.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!