每日一题-20240222

题目描述

189. 轮转数组

给定一个整数数组 nums,将数组中的元素向右轮转 k 个位置,其中 k 是非负数。

示例 1:

1
2
3
4
5
6
输入: 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:

1
2
3
4
5
输入:nums = [-1,-100,3,99], k = 2
输出:[3,99,-1,-100]
解释:
向右轮转 1 步: [99,-1,-100,3]
向右轮转 2 步: [3,99,-1,-100]

提示:

  • 1 <= nums.length <= 105
  • -231 <= nums[i] <= 231 - 1
  • 0 <= k <= 105

解题思路

核心:若 k == nums.length 则轮转一轮后结果依然是原数组。因此,只需要轮转 (k % nums.length) 个位置即可.

代码实现

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
public class Solution189Case1 {
/**
* 若 k == nums.length 则轮转一轮后结果依然是原数组
* 因此,只需要轮转 (k % nums.length) 个位置即可.
*
* @param nums
* @param k
*/
public static void rotate(int[] nums, int k) {
int count = k % nums.length;
if (0 == count) {
return;
}
int[] temp = new int[count];
int length = nums.length;
for (int i = 0; i < count; i++) {
temp[i] = nums[length - count + i];
}
for (int i = length - count - 1; i >= 0; i--) {
nums[i + count] = nums[i];
}
for (int i = 0; i < temp.length; i++) {
nums[i] = temp[i];
}
}

public static void main(String[] args) {
int[] nums = {1, 2, 3, 4, 5, 6, 7};
rotate(nums, 3);
System.err.println(1);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Solution189Case3 {
public static void rotate(int[] nums, int k) {
int length = nums.length;
int[] newArr = new int[length];
for (int i = 0; i < length; i++) {
newArr[i] = nums[(i + k + 1) % length];
}
System.arraycopy(newArr, 0, nums, 0, length);
}

public static void main(String[] args) {
int[] nums = {1, 2, 3, 4, 5, 6, 7};
rotate(nums, 3);
System.err.println(1);
}
}