码迷,mamicode.com
首页 > 编程语言 > 详细

sampleSize - 从数组中随机获取 n 个元素

时间:2018-01-18 18:00:10      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:log   span   第一个   ...   opera   lan   yate   led   http   

从 array 中获取 n 个唯一键随机元素。

使用Fisher-Yates算法 对数组进行打乱。 使用 Array.slice() 获取第一个 n 元素。 省略第二个参数,n 从数组中随机取得 1 个元素。

const sampleSize = ([...arr], n = 1) => {
  let m = arr.length;
  while (m) {
    const i = Math.floor(Math.random() * m--);
    [arr[m], arr[i]] = [arr[i], arr[m]];
  }
  return arr.slice(0, n);
};

sampleSize([1, 2, 3], 2); // [3,1]
sampleSize([1, 2, 3], 4); // [2,3,1]

sampleSize - 从数组中随机获取 n 个元素

标签:log   span   第一个   ...   opera   lan   yate   led   http   

原文地址:https://www.cnblogs.com/bali123/p/8311496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!