随机打乱数组顺序之随机洗牌算法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机打乱数组顺序之随机洗牌算法相关的知识,希望对你有一定的参考价值。
var shuffleArray = function(array) { var currentIndex = array.length; var temporary; var toIndex; while (currentIndex) { toIndex = Math.floor(Math.random() * currentIndex--); temporary = array[currentIndex]; array[currentIndex] = array[toIndex]; array[toIndex] = temporary; } return array; }
以上是关于随机打乱数组顺序之随机洗牌算法的主要内容,如果未能解决你的问题,请参考以下文章