题目描述:
给你一个数组 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
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shuffle-the-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解答:
* Note: The returned array must be malloced, assume caller calls free().
int* shuffle(int* nums, int numsSize, int n, int* returnSize)
int *res = malloc(sizeof(nums) * numsSize);
*returnSize = numsSize;
int i = 0;
int j = 0;
for(i = 0; i < n; i++)
res[j] = nums[i];
j = j + 2;
j = 1;
for(i = 0; i < n; i++)
res[j] = nums[n + i];
j = j + 2;
return res;
运行结果:
在 Visual c + + 中使用 random_shuffle STL 函数04/24/2020本文内容本文介绍如何使用 random_shuffle Visual c + + 中的标准模板库(STL)函数。原始产品版本: Visual c + +原始 KB 数: 156994必需标头Prototypetemplate inlinevoid random_shuffle(RandomAcc...
Fisher-Yates Shuffle算法1.创建一个新的list2.随机取出当前0-list.Count其中一个数3.把老list当前随机数位置添加到新list4.老list删除这个数5.直到老list.Count=0结束返回public void FisherYatesShuffle(List list){List cache = new List();int currentIndex;wh...
题目的意思其实比较清楚了:重新排列的数组中,偶数位置的元素从n开始,奇数位置从0开始。
故而有如下代码:
int* shuffle(int* nums, int numsSize, int n, int* returnSize){
int *results = (int *)malloc(numsSize * sizeof(int));//重新分配内存
int count=2;//用于控制区分偶数位和奇数位
for(int k=0,i=0,j=n;k<numsSi
有位同学面试的时候被问到shuffle函数的实现,他之后问我,我知道这个函数怎么用,知道是对数组(或集合)中的元素按随机顺序重新排列。但是没有深入研究这个是怎么实现的。现在直接进入JDK源码进行分析。
二、源码分析
shuffle函数的源码如下
public static void shuffle(List<?> list, Random rn...
Shuffle过程是MapReduce的核心。Shuffle的意思是洗牌或者打乱,会使用Java的同学应该见过Java API里面的Collections.shuffle(list)方法,它会随机地打乱参数list里面的元素顺序。
如果读者不知道MapReduce里面的Shuffle是什么,请看下图
Shuffle差不多就是从MapTask输出到ReduceTask输入的这一过程。