首页 > 代码库 > LeetCode Rotate Image
LeetCode 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?
可以找规律 得出映射关系,(i,j)===>(j,n-1-j)
由于要in-place,不能直接新建矩阵,所以从外圈开始,一个个置换。
1 public class Solution { 2 public void rotate(int[][] matrix) { 3 int n = matrix[0].length -1; 4 for(int i = 0;i <= n - i;i++){ 5 for(int j = i;j <= n - i - 1;j++) 6 { 7 int tmp = matrix[j][n-i]; 8 matrix[j][n-i] = matrix[i][j]; 9 matrix[i][j] = matrix[n-j][i];10 matrix[n-j][i] = matrix[n-i][n-j];11 matrix[n-i][n-j] = tmp;12 }13 }14 }15 }
LeetCode Rotate Image
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。