美文网首页
LeetCode题解之重新排列数组

LeetCode题解之重新排列数组

作者: l1fe1 | 来源:发表于2020-07-01 14:11 被阅读0次

    重新排列数组

    题目描述

    给你一个数组 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

    解题思路

    从题目中可以得知以下信息:

    • 原数组的前 n 个元素将被排列到新数组的偶数索引的位置
    • 原数组的后 n 个元素将被排列到新数组的奇数索引的位置

    因此,按照上述规则组织元素即可得到新数组。

    复杂度分析

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

    代码实现

    class Solution {
        public int[] shuffle(int[] nums, int n) {
            int[] res = new int[nums.length];
            for (int i = 0; i < n; i ++) {
                res[2 * i] = nums[i];
                res[2 * i + 1] = nums[i + n];
            }
            return res;
        }
    }
    

    相关文章

      网友评论

          本文标题:LeetCode题解之重新排列数组

          本文链接:https://www.haomeiwen.com/subject/iiicqktx.html