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

javascript 数组相关的一些 自定义函数

时间:2018-08-04 20:32:44      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:.net   --   laravel   prot   blank   test   lips   highlight   eclipse   

* php shuffle 打乱数组顺序

Array.prototype.shuffle = function () {
    "use strict";
    var a = [], b = [], n = this.length, i, j, seq;
    // @b: a[i] element exists?
    for (i = 0; i < n; i++) {
        b[i] = 0;
    }

    function _getIndex(b, seq) {
        var n = b.length;
        for (i = 0; ; i = (i+1)%n) {
            if (!b[i]) {
                if (seq===0) {
                    break;
                }
                seq--;
            }
        }
        return i;
    }

    while (n-->0) {
        seq = Math.floor(3*this.length * Math.random());
        j = _getIndex(b, seq);
        a.push(this[j]);
        b[j] = 1;
    }

    return a;
};

  

test:

// var aa = [‘DevTools‘, ‘PHP‘, ‘PHP_Framework‘, ‘EclipsePDT‘, ‘Laravel‘, ‘PHPStorm‘, ‘ThinkPHP5‘];
var aa = [0,1,2,3,4,5,6,7,8,9];
var n = 1000;

if (typeof window === "undefined") {
    while (n--) {console.log(aa.shuffle());}
} else {
    while (n--) {document.write("<p>["+aa.shuffle().toString()+"]</p>");}
}

  

 

javascript 数组相关的一些 自定义函数

标签:.net   --   laravel   prot   blank   test   lips   highlight   eclipse   

原文地址:https://www.cnblogs.com/mingzhanghui/p/9419495.html

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