您的位置:首页 > 房产 > 家装 > 聊城app开发公司_抚州制作网站哪家公司好_网站技术解决方案_合肥网站推广优化

聊城app开发公司_抚州制作网站哪家公司好_网站技术解决方案_合肥网站推广优化

2024/12/27 8:31:42 来源:https://blog.csdn.net/chenziang1/article/details/144680548  浏览:    关键词:聊城app开发公司_抚州制作网站哪家公司好_网站技术解决方案_合肥网站推广优化
聊城app开发公司_抚州制作网站哪家公司好_网站技术解决方案_合肥网站推广优化

48. 旋转图像

已解答

中等

相关标签

相关企业

给定一个 × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。

你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像

class Solution(object):

    def rotate(self, matrix):

        """

        :type matrix: List[List[int]]

        :rtype: None Do not return anything, modify matrix in-place instead.

        """

        # 旋转四次之后就是原图像

        # 原地修改不能使用visted

       

        n=len(matrix[0])

        count=(n+1)/2

        if n%2==0:

            for counti in range(count):

                # s=matrix[i][j]

                top = counti

                bottom = n-counti-1

                left = counti

                right = n-counti-1

                for swap_count in range(0,n-1-2*counti):

                    tmp = matrix[top+swap_count][right]

                    matrix[top+swap_count][right] = matrix[top][left+swap_count]

                    tmp2 = matrix[bottom][right-swap_count]

                    matrix[bottom][right-swap_count] = tmp

                    tmp3 = matrix[bottom-swap_count][left]

                    matrix[bottom-swap_count][left] = tmp2

                    matrix[top][left+swap_count]=tmp3

        else:

            for counti in range(count):

                # s=matrix[i][j]

                top = counti

                bottom = n-counti-1

                left = counti

                right = n-counti-1

                for swap_count in range(0,n-1-2*counti):

                    tmp = matrix[top+swap_count][right]

                    matrix[top+swap_count][right] = matrix[top][left+swap_count]

                    tmp2 = matrix[bottom][right-swap_count]

                    matrix[bottom][right-swap_count] = tmp

                    tmp3 = matrix[bottom-swap_count][left]

                    matrix[bottom-swap_count][left] = tmp2

                    matrix[top][left+swap_count]=tmp3

                if counti==count-1:

                    break




 

       



 

         

这里其实可以看作是左上角的四分之一的矩阵进行旋转得到的全部,而我使用的是一圈一圈的方法。注意奇偶不一样导致的最终可能里面一圈是一个数或者一圈数。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com