JavaScript随机打乱数组顺序之随机洗牌算法
作者:mrr 时间:2024-05-03 15:33:00
假如有一个数组是这样子:
var arr1 = ["a", "b", "c", "d"];
如何随机打乱数组顺序,也即洗牌。
有一个比较广为传播的简单随机算法:
function RandomSort (a,b){ return (0.5 - Math.random()); }
实际证明上面这个并不完全随机。
随便一搜网上太多这种东西了,看一下stackoverflow上的一个高分回答,答案出自github上。
knuth-shuffle
The Fisher-Yates (aka Knuth) shuffle for Browser and Node.JS
下面一起看看上面说的这个算法,代码如下:
/*jshint -W054 */
(function (exports) {
'use strict';
// http://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array
function shuffle(array) {
var currentIndex = array.length
, temporaryValue
, randomIndex
;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
}
exports.knuthShuffle = shuffle;
}('undefined' !== typeof exports && exports || 'undefined' !== typeof window && window || global));
作者推荐使用浏览器写法:
(function () {
'use strict';
var a = [2,11,37,42]
, b
;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = window.knuthShuffle(a.slice(0));
console.log(b);
}());
Nodejs:
npm install -S knuth-shuffle
(function () {
'use strict';
var shuffle = require('knuth-shuffle').knuthShuffle
, a = [2,11,37,42]
, b
;
// The shuffle modifies the original array
// calling a.slice(0) creates a copy, which is assigned to b
b = shuffle(a.slice(0));
console.log(b);
}());
还有其它从这个算法中变形去的,比如下面这个for循环的。其它的就不说了。
/**
* Randomize array element order in-place.
* Using Durstenfeld shuffle algorithm.
*/
function shuffleArray(array) {
for (var i = array.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var temp = array[i];
array[i] = array[j];
array[j] = temp;
}
return array;
}
使用ES2015(ES6)
Array.prototype.shuffle = function() {
let m = this.length, i;
while (m) {
i = (Math.random() * m--) >>> 0;
[this[m], this[i]] = [this[i], this[m]]
}
return this;
}
使用:
[1, 2, 3, 4, 5, 6, 7].shuffle();
发现中文搜索随机算法一大堆,但究竟是不是完全随机,效率和兼容性都有待考究,建议后面如果有需要用到随机打乱数组元素,可以用上面这个。
标签:js,数组,洗牌算法
0
投稿
猜你喜欢
go解析svn log生成的xml格式的文件
2024-03-13 15:13:34
Go Ginrest实现一个RESTful接口
2024-05-21 10:26:08
javascript中的变量是传值还是传址的?
2024-04-10 10:52:28
Python __slots__的使用方法
2023-11-19 16:15:10
SqlServer开发神器'SQLPrompt'插件的使用详解
2024-01-23 23:48:55
Python多线程实现支付模拟请求过程解析
2023-04-09 17:59:35
python基础之局部变量和全局变量
2021-10-23 06:50:31
一篇文章教你用Python绘画一个太阳系
2022-12-16 14:43:16
perl实现检测服务器中的服务是否正常脚本分享
2022-05-05 21:17:12
python3利用Dlib19.7实现人脸68个特征点标定
2021-05-05 19:13:06
Linux Centos 下使用yum 命令安装mysql实现步骤
2024-01-28 02:24:42
Python OpenCV实现鼠标画框效果
2022-03-02 10:45:15
python条件和循环的使用方法
2021-12-16 22:27:59
通过Python pyecharts输出保存图片代码实例
2021-09-14 22:26:11
MySQL5.7.18主从复制搭建(一主一从)教程详解
2024-01-25 12:55:03
在Vue中如何使用Cookie操作实例
2024-05-09 09:52:14
关于超级链接的一些问题
2007-12-07 14:00:00
python3.4中清屏的处理方法
2023-11-14 04:09:21
在SAE上部署Python的Django框架的一些问题汇总
2023-12-17 19:08:25
10分钟教你本地配置多个git ssh连接的方法
2022-03-05 04:44:53