给定一个数组,将数组中的元素向右移动 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