我是靠谱客的博主 炙热鼠标,最近开发中收集的这篇文章主要介绍Leetcode 189,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

给定一个数组,将数组中的元素向右移动 个位置,其中 是非负数。

示例 1:

输入: [1,2,3,4,5,6,7]k = 3
输出: [5,6,7,1,2,3,4]
解释:
向右旋转 1 步: [7,1,2,3,4,5,6]
向右旋转 2 步: [6,7,1,2,3,4,5]
向右旋转 3 步: [5,6,7,1,2,3,4]

示例 2:

输入: [-1,-100,3,99]k = 2
输出: [3,99,-1,-100]
解释: 
向右旋转 1 步: [99,-1,-100,3]
向右旋转 2 步: [3,99,-1,-100]

说明:

  • 尽可能想出更多的解决方案,至少有三种不同的方法可以解决这个问题。
  • 要求使用空间复杂度为 O(1) 的原地算法。

方法一:类似队列的概念,旋转的概念就是将出队的又入队

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: void Do not return anything, modify nums in-place instead.
        """
        for i in range(k):
            temp = nums.pop()
            nums.insert(0, temp)

方法二:直接将需要旋转的部分提取出来,设置一个中间变量p,再循环给nums重新赋值

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: void Do not return anything, modify nums in-place instead.
        """
        length = len(nums)
        temp = nums[length-k:]
        temp1 = nums[0:length-k]
        p = temp+temp1
        for i in range(len(nums)):
            nums[i] = p[i]

方法三:直接就地重新赋值

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: void Do not return anything, modify nums in-place instead.
        """
        length = len(nums)
        temp = nums[length-k:]
        temp1 = nums[0:length-k]
        nums[0: k] = temp
        nums[k:] = temp1

 

最后

以上就是炙热鼠标为你收集整理的Leetcode 189的全部内容,希望文章能够帮你解决Leetcode 189所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部