自学内容网 自学内容网

力扣hot100 旋转图像 模拟 坐标映射

Problem: 48. 旋转图像
在这里插入图片描述

思路

👨‍🏫 参考

在这里插入图片描述

💖 原地旋转

时间复杂度: O ( n 2 ) O(n^2) O(n2)

空间复杂度: O ( 1 ) O(1) O(1)

class Solution {
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 t = 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] = t;
 }
}
}

原文地址:https://blog.csdn.net/lt6666678/article/details/135848481

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!