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

比sort()性能更好的原生js代码实现数组从小到大排序

时间:2018-09-29 20:25:19      阅读:586      评论:0      收藏:0      [点我收藏+]

标签:实现   style   xid   --   color   pre   bsp   ==   排序   

    nums = [1,2,4,1,34,6,-1,2]
    for(let i = nums.length - 1; i > 0; i--) {
        let maxIdx = i;
        for(let j = 0; j < i; j++) {
            if(nums[maxIdx] < nums[j]) maxIdx = j;
        }
        if(maxIdx !== i) {
            let temp = nums[maxIdx];
            nums[maxIdx] = nums[i];
            nums[i] = temp;
        }
    }

 

比sort()性能更好的原生js代码实现数组从小到大排序

标签:实现   style   xid   --   color   pre   bsp   ==   排序   

原文地址:https://www.cnblogs.com/hrlin/p/9726271.html

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