-
Notifications
You must be signed in to change notification settings - Fork 0
/
189.轮转数组.py
102 lines (89 loc) · 1.89 KB
/
189.轮转数组.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#
# @lc app=leetcode.cn id=189 lang=python3
#
# [189] 轮转数组
#
# https://leetcode.cn/problems/rotate-array/description/
#
# algorithms
# Medium (44.40%)
# Likes: 2051
# Dislikes: 0
# Total Accepted: 755.5K
# Total Submissions: 1.7M
# Testcase Example: '[1,2,3,4,5,6,7]\n3'
#
# 给定一个整数数组 nums,将数组中的元素向右轮转 k 个位置,其中 k 是非负数。
#
#
#
# 示例 1:
#
#
# 输入: nums = [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:
#
#
# 输入:nums = [-1,-100,3,99], k = 2
# 输出:[3,99,-1,-100]
# 解释:
# 向右轮转 1 步: [99,-1,-100,3]
# 向右轮转 2 步: [3,99,-1,-100]
#
#
#
# 提示:
#
#
# 1 <= nums.length <= 10^5
# -2^31 <= nums[i] <= 2^31 - 1
# 0 <= k <= 10^5
#
#
#
#
# 进阶:
#
#
# 尽可能想出更多的解决方案,至少有 三种 不同的方法可以解决这个问题。
# 你可以使用空间复杂度为 O(1) 的 原地 算法解决这个问题吗?
#
#
#
# @lc code=start
from typing import List
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
length = len(nums)
if k > length:
k = k % length
if k == 0:
return
b = nums[length - k :]
for i in range(length - k - 1, -1, -1):
nums[i], nums[i + k] = nums[i + k], nums[i]
for i in range(len(b)):
nums[i] = b[i]
# @lc code=end
if __name__ == "__main__":
nums = [1, 2]
k = 3
# 7 1 2 3 4 5 6 1 7 / 3 > 3
# 6 7 1 2 3 4 5 2
# 5 6 7 1 2 3 4 3
# 4 5 6 7 1 2 3 4
# 3 4 5 6 7 1 2 5
# 2 3 4 5 6 7 1 6
# 1 2 3 4 5 6 7 7
Solution().rotate(nums=nums, k=k)
print(nums)