·
·
文章目录
  1. 题目介绍
  2. 复杂度
  3. 解题思路
    1. 数组拼接
    2. 数组翻转

Rotate Array

题目介绍

LeetCode 189. Rotate Array

复杂度

时间复杂度:O(n),空间复杂度: O(1)

解题思路

数组拼接

直接将需要移到前面的数组取出来拼接。

1
2
3
4
5
6
class Solution {
func rotate(_ nums: inout [Int], _ k: Int) {
let i = k % nums.count
nums = Array(nums[nums.count-i..<nums.count]) + Array(nums[0..<nums.count-i])
}
}

数组翻转

例如:

[1,2,3,4,5,6,7] 3
[7,6,5,4,3,2,1]
[5,6,7,4,3,2,1]
[5,6,7,1,2,3,4]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
func rotate(_ nums: inout [Int], _ k: Int) {
let i = k % nums.count
reverse(&nums, 0, nums.count - 1)
reverse(&nums, 0, i - 1)
reverse(&nums, i, nums.count - 1)
}

func reverse(_ nums: inout [Int], _ left: Int, _ right: Int) {
var l = left
var r = right
while (l < r) {
nums.swapAt(l, r)
l += 1
r -= 1
}
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2020/03/08/RotateArray/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫