重新排列数组
# 重新排列数组 (opens new window)
Category | Difficulty | Likes | Dislikes |
---|---|---|---|
algorithms | Easy (85.25%) | 150 | - |
Companies
给你一个数组 nums
,数组中有 2n
个元素,按 [x1,x2,...,xn,y1,y2,...,yn]
的格式排列。
请你将数组按 [x1,y1,x2,y2,...,xn,yn]
格式重新排列,返回重排后的数组。
示例 1:
输入: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]
1
2
3
2
3
示例 2:
输入:nums = [1,2,3,4,4,3,2,1], n = 4
输出:[1,4,2,3,3,2,4,1]
1
2
2
示例 3:
输入:nums = [1,1,2,2], n = 2
输出:[1,2,1,2]
1
2
2
提示:
1 <= n <= 500
nums.length == 2n
1 <= nums[i] <= 10^3
Discussion (opens new window) | Solution (opens new window)
/*
* @Author: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Date: 2022-11-09 11:11:35
* @LastEditTime: 2022-11-09 11:40:34
* @LastEditors: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Description:
* @FilePath: /leetcode/1470.重新排列数组.ts
*/
/*
* @lc app=leetcode.cn id=1470 lang=typescript
*
* [1470] 重新排列数组
*
* https://leetcode.cn/problems/shuffle-the-array/description/
*
* algorithms
* Easy (85.25%)
* Likes: 150
* Dislikes: 0
* Total Accepted: 95.8K
* Total Submissions: 112.4K
* Testcase Example: '[2,5,1,3,4,7]\n3'
*
* 给你一个数组 nums ,数组中有 2n 个元素,按 [x1,x2,...,xn,y1,y2,...,yn] 的格式排列。
*
* 请你将数组按 [x1,y1,x2,y2,...,xn,yn] 格式重新排列,返回重排后的数组。
*
*
*
* 示例 1:
*
* 输入: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:
*
* 输入:nums = [1,2,3,4,4,3,2,1], n = 4
* 输出:[1,4,2,3,3,2,4,1]
*
*
* 示例 3:
*
* 输入:nums = [1,1,2,2], n = 2
* 输出:[1,2,1,2]
*
*
*
*
* 提示:
*
*
* 1 <= n <= 500
* nums.length == 2n
* 1 <= nums[i] <= 10^3
*
*
*/
// @lc code=start
function shuffle(nums: number[], n: number): number[] {
const res: number[] = new Array(2 * n).fill(0);
for (let i = 0; i < n; i++) {
res[2 * i] = nums[i];
res[2 * i + 1] = nums[i + n];
}
return res;
}
// @lc code=end
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
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
上次更新: 2022/11/09, 12:24:33