Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如这里所指出的,对于> 22 个元素的数组,chrome 的默认排序是不稳定的。有没有办法强制 chrome 使用稳定的排序算法?
Array#sort 中的稳定排序?不,您不能指定要使用的算法(标准没有说明任何内容)。因此,您可以编写自己的sort函数或扩展密钥:
sort
不稳定的排序算法可以专门实现稳定。这样做的一种方法是人为地扩展键比较,以便使用原始数据顺序中条目的顺序作为决胜局来决定具有其他相同键的两个对象之间的比较