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

随机打乱数组顺序之随机洗牌算法

时间:2016-09-28 15:39:43      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

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;
}

  

随机打乱数组顺序之随机洗牌算法

标签:

原文地址:http://www.cnblogs.com/andyjin/p/5916291.html

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