문제

I want to know if there is any algorithm in PHP which would be the equivalent algorithm of the timsort algorithm implemented in Python for sorting lists ?

It so happened that I had to translate some code from python to php.

올바른 솔루션이 없습니다

다른 팁

According to wiki python's sort() is a timsort

http://en.wikipedia.org/wiki/Timsort

you could always try to write your own implementation of timsort in php. I suggest reading up on timsort and looking at a few examples.

https://github.com/swenson/sort

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top