【LeetCode with Python】 Rotate Image

博客域名: http://www.xnerv.wang
原题页面: https://oj.leetcode.com/problems/rotate-image/
题目类型:下标计算
难度评价:★★★
本文地址: http://blog.csdn.net/nerv3x3/article/details/37968757

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?


顺时针90度转动一个二维矩阵,要求in-place的算法,也就不是不能另外开一个新的矩阵然后把原矩阵上的元素一个个对应复制过来,而要在原矩阵上进行操作。
目前能想到的有两种方法。
第一种比较直观,首先将原矩阵按照水平轴上下翻转,然后按照左上到右下的对角线再反转,则等价于90度顺时针转动。这个方法的缺点是要反转两次,优点是直观,不容易出错。
第二种方法每个元素只需要调整一次,但是转化公式会比较复杂。对于矩阵matrix[n][n]中的某一点matrix[x][y](0<=x, y<n),90度顺时针转动后到了matrix[y][n-x-1],而matrix[y][n-x-1]到了matrix[n-x-1][n-y-1],matrix[n-x-1][n-y-1]到了matrix[n-y-1][x],matrix[n-y-1][x]又到了matrix[x][y],可见这四个点正好实现了一次旋转互换。
本文采用第二种方法,空间复杂度O(1),时间复杂度O(n*n)。

class Solution:
    # @param matrix, a list of lists of integers
    # @return nothing (void), do not return anything, modify matrix in-place instead.
    def rotate(self, matrix):
        n = len(matrix)
        if 1 == n:
            return
        round = int(n / 2)
        for x in range(0, round):
            for y in range(x, n - x - 1):
                matrix[n - y - 1][x], matrix[n - x - 1][n - y - 1], matrix[y][n - x - 1], matrix[x][y] = matrix[n - x - 1][n - y - 1], matrix[y][n - x - 1], matrix[x][y], matrix[n - y - 1][x]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值