JavaScriptは配列をランダムに並べ替える方法です.

998 ワード

本論文の例は、JavaScriptが配列をランダムに並べ替える方法を説明する.皆さんの参考にしてください.具体的には以下の通りです
ここでは配列をランダムに並べ替える2つの方法が提供されている.


var count = 100000,arr = [];
for(var i=0;i<count;i++){
 arr.push(i);
}
//    ,sort()
var t = new Date().getTime();
Array.prototype.sort.call(arr,function(a,b){ return Math.random()>.5 ? -1 : 1;});
document.write(arr+'<br/>');
var t1 = new Date().getTime();
document.write(t1-t);
//        
if (!Array.prototype.shuffle) {
  Array.prototype.shuffle = function() {
    for(var j, x, i = this.length; i; j = parseInt(Math.random() * i), x = this[--i], this[i] = this[j], this[j] = x);
    return this;
  };
}
var t = new Date().getTime();
arr.shuffle();
document.write('<br/>'+arr+'<br/>');
var t1 = new Date().getTime();
document.write(t1-t);


本論文で述べたように、皆さんのjavascriptプログラムの設計に役に立ちます.