PreviousNext

Timsort — the fastest sorting algorithm you’ve never heard of

by bill-s, 2018-08-21T02:37:49.481Z

Timsort is a sorting algorithm that is efficient for real-world data and not created in an academic laboratory. Tim Peters created Timsort for the Python programming language in 2001. Timsort first analyses the list it is trying to sort and then chooses an approach based on the analysis of the list.

Read More