Rotate Array
Posted 唐僧洗发爱飘柔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rotate Array相关的知识,希望对你有一定的参考价值。
这道题为简单题
题目:
思路:
我的思路:利用列表的insert和pop方法进行操作
大神:利用分片操作,效率明显高得多
代码:
我的代码:
1 class Solution(object): 2 def rotate(self, nums, k): 3 """ 4 :type nums: List[int] 5 :type k: int 6 :rtype: void Do not return anything, modify nums in-place instead. 7 """ 8 for i in range(k): 9 nums.insert(0, nums.pop())
大神的:
1 class Solution: 2 # @param nums, a list of integer 3 # @param k, num of steps 4 # @return nothing, please modify the nums list in-place. 5 def rotate(self, nums, k): 6 n = len(nums) 7 k = k % n 8 nums[:] = nums[n-k:] + nums[:n-k]
以上是关于Rotate Array的主要内容,如果未能解决你的问题,请参考以下文章