数组多重排序
Posted 等风来
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组多重排序相关的知识,希望对你有一定的参考价值。
写法1
//直接在sort函数中自定义书写,适用性强 array.sort(function(ob1,ob2) { if (ob1.strength > ob2.strength) { return 1; } else if (ob1.strength < ob2.strength) { return -1; } // 当strength相等的时候会以name来进行比较 if (ob1.name < ob2.name) { return -1; } else if (ob1.name > ob2.name) { return 1 } else { // nothing to split them return 0; } })
写法2
//比较使用一个通用函数,未必适用所有情况,字符串可以使用>比较,比较的是其字典序 cmp = function(a, b) { if (a > b) return +1; if (a < b) return -1; return 0; } //直接使用原生的sort函数,当前面的比较为0时候,使用后面的比较 array.sort(function(a, b) { return cmp(a.strength,b.strength) || cmp(a.name,b.name) })
写法3
//localeCompare比较会使用当地的字母比较规则,区别与>的unicode字典序 objects.sort(function (a, b) { return a.strength - b.strength || a.name.localeCompare(b.name); });
写法4
使用thenBy.js
出处: https://stackoverflow.com/questions/9175268/javascript-sort-function-sort-by-first-then-by-second
以上是关于数组多重排序的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段