栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

从数组中采样随机子集

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

从数组中采样随机子集

我建议使用Fisher-Yates混洗混洗数组的副本并进行切片:

function getRandomSubarray(arr, size) {    var shuffled = arr.slice(0), i = arr.length, temp, index;    while (i--) {        index = Math.floor((i + 1) * Math.random());        temp = shuffled[index];        shuffled[index] = shuffled[i];        shuffled[i] = temp;    }    return shuffled.slice(0, size);}var x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15];var fiveRandomMembers = getRandomSubarray(x, 5);

请注意,这不是获取大型数组的随机小子集的最有效方法,因为它会不必要地对整个数组进行洗牌。为了获得更好的性能,您可以执行部分​​改组:

function getRandomSubarray(arr, size) {    var shuffled = arr.slice(0), i = arr.length, min = i - size, temp, index;    while (i-- > min) {        index = Math.floor((i + 1) * Math.random());        temp = shuffled[index];        shuffled[index] = shuffled[i];        shuffled[i] = temp;    }    return shuffled.slice(min);}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/432441.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号