Python Sort Algorithm [duplicate]
I am implemented different sorting algorithms in Python to better understand them, an开发者_如何学编程d I was wondering what type of sort does Python's built-in sort method implement?
It's an algorithm called Timsort developed by Tim Peters specifically for Python.
精彩评论