LeetCode刷题指南:旋转数组

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

示例 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) 的原地算法。

解答:
方法一:每一次旋转,将第0位到第n-2位向右移动一位,同时将最高位赋值给第0位,
移动k个位置,即循环k次
这个方法时间复杂度太高,Leetcode的最后一个测试用例跑不过!

代码:

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: None Do not return anything, modify nums in-place instead.
        """
        n = len(nums)
        while k > 0 :
            m = nums[n-1]
            i = n - 2
            while i > =0 :
                nums[i+1] = nums[i]
                i -= 1
            nums[0] = m
            k -= 1

方法二:

class Solution(object):
    def rotate(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: None Do not return anything, modify nums in-place instead.
        """
        lenth = len(nums)
        k = k % lenth
        self.reverse(nums,0,lenth)
        self.reverse(nums,0,k)
        self.reverse(nums,k,lenth)
        
    
    def reverse(self,nums,n,m):
        long = m-n
        i = 0 
        j = n
        while j < n+long/2:
            self.sp(nums[j],nums[m-1-i])
            i +=1
            j +=1
        return nums
    
    def sp(self,a,b):
        x = a
        a = b
        b = x
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

编程理想国

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值