48. 旋转图像 + 数组遍历 + 思维

2021-06-07 03:02

阅读:406

标签:image   leetcode   使用   官方   mamicode   翻转   i++   现在   img   

48. 旋转图像

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 

题解来源:leetcode官方题解:旋转图像

48. 旋转图像 + 数组遍历 + 思维

标签:image   leetcode   使用   官方   mamicode   翻转   i++   现在   img   

原文地址:https://www.cnblogs.com/GarrettWale/p/14590113.html


评论


亲,登录后才可以留言!