力扣(LeetCode)算法题解:1470. 重新排列数组

tech2022-08-10  136

重新排列数组

(一)题目描述(二)输入、输出示例(三)代码实现方法1(php版):解题思路代码实现性能分析

(一)题目描述

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

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

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/shuffle-the-array 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

(二)输入、输出示例

示例 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(php版):

解题思路

遍历1次,将i和j的值依次放入新的数组中。

代码实现

class Solution { /** * @param Integer[] $nums * @param Integer $n * @return Integer[] */ function shuffle($nums, $n) { $array = []; for ($i = 0, $j = $n; $i < $n; $i++, $j++) { $array[] = $nums[$i]; $array[] = $nums[$j]; } return $array; } }

性能分析

运行时间内存消耗20ms15.3 MB
最新回复(0)