48. 旋转图像 + 数组遍历 + 思维
2021-06-07 03:02
标签:image leetcode 使用 官方 mamicode 翻转 i++ 现在 img 题解来源:leetcode官方题解:旋转图像 48. 旋转图像 + 数组遍历 + 思维 标签:image leetcode 使用 官方 mamicode 翻转 i++ 现在 img 原文地址:https://www.cnblogs.com/GarrettWale/p/14590113.html48. 旋转图像
LeetCode_48
题目描述
方法一:使用辅助数组
class Solution {
public void rotate(int[][] matrix) {
//第i,j的元素翻转后出现在倒数第i列的第j个元素
int m = matrix.length;
int n = matrix[0].length;
int[][] rotate = new int[m][n];
for(int i=0; i
方法二:不使用辅助数组
class Solution {
public void rotate(int[][] matrix) {
//第i,j的元素翻转后出现在倒数第i列的第j个元素
int m = matrix.length;
int n = matrix[0].length;
for(int i=0; i
文章标题:48. 旋转图像 + 数组遍历 + 思维
文章链接:http://soscw.com/index.php/essay/91550.html