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.
我想知道 PHP 中是否有任何算法与 Python 中实现的用于排序列表的 timsort 算法等效?
碰巧我不得不将一些代码从 python 翻译成 php。
根据 wiki python 的 sort() 是一个 timsort
http://en.wikipedia.org/wiki/Timsort
您总是可以尝试在 php 中编写自己的 timsort 实现。我建议阅读 timsort 并查看一些示例。
https://github.com/swenson/sort