JavaScript shuffle 数组洗牌
【摘要】
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<script>
function cr...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<script>
function createArray(max) {
const arr = [];
for(let i = 0; i < max; i++) {
arr.push(i);
}
return arr;
}
function shuffleSort(arr) {
arr.sort(()=> {
//返回值大于0,表示需要交换;小于等于0表示不需要交换
return Math.random() > .5 ? -1 : 1;
});
return arr;
}
function shuffleSwap(arr) {
if(arr.length == 1) return arr;
//正向思路
// for(let i = 0, n = arr.length; i < arr.length - 1; i++, n--) {
// let j = i + Math.floor(Math.random() * n);
//逆向思路
let i = arr.length;
while(--i > 1) {
//Math.floor 和 parseInt 和 >>>0 和 ~~ 效果一样都是取整
let j = Math.floor(Math.random() * (i+1));
/*
//原始写法
let tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
*/
//es6的写法
[arr[i], arr[j]] = [arr[j], arr[i]];
}
return arr;
}
function wrap(fn, max) {
const startTime = new Date().getTime();
const arr = createArray(max);
const result = fn(arr);
const endTime = new Date().getTime();
const cost = endTime - startTime;
console.log(arr);
console.log("cost : " + cost);
}
wrap(shuffleSort, 1000);
wrap(shuffleSwap, 1000);//试验证明这种方法比第一种效率高多了
</script>
</head>
<body>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
文章来源: blog.csdn.net,作者:福州-司马懿,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/chy555chy/article/details/83989054
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)