MelodyHub

没有伞的孩子必须努力奔跑!|

题目来自【192场周赛】

题目描述

  1. 重新排列数组

题目难度:Easy

给你一个数组 nums ,数组中有 2n 个元素,按 [x1,x2,…,xn,y1,y2,…,yn] 的格式排列。

请你将数组按 [x1,y1,x2,y2,…,xn,yn] 格式重新排列,返回重排后的数组。

示例 1:

1
2
3
输入:nums = [2,5,1,3,4,7], n = 3
输出:[2,3,5,4,1,7]
解释:由于 x1=2, x2=5, x3=1, y1=3, y2=4, y3=7 ,所以答案为 [2,3,5,4,1,7]

示例 2:

1
2
输入:nums = [1,2,3,4,4,3,2,1], n = 4
输出:[1,4,2,3,3,2,4,1]

示例 3:

1
2
输入:nums = [1,1,2,2], n = 2
输出:[1,2,1,2]

提示:

  • 1 <= n <= 500
  • nums.length == 2n
  • 1 <= nums[i] <= 10^3

题解

思路贼简单,直接上代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
public int[] shuffle(int[] nums, int n) {
int count = (nums.length)/n; // 每轮的元素个数,n轮
int[] res = new int[nums.length];
int index = 0;
for(int i = 0; i < n; i++) {
for(int j = 0;j <count; j++) {
res[index] = nums[i + n * j];
++index;
}
}
return res;
}
}

 评论


博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议

本站使用 Hexo 作为驱动引擎 , 总浏览量为 次 , 总访客数为
载入天数...载入时分秒...