Sorting Algorithms/Timsort

From Rosetta Code
Revision as of 05:30, 26 June 2016 by rosettacode>GreySunshine
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Timsort is a stable sorting algorithm. It is a hybrid between Insertion sort and Merge sort so, it brings in the best of two worlds.

Time Complexity: O(nlogn) Space Complexity: O(n)

C: [CPython's Timsort]

Java: [OpenJDK's Timsort]

C++: [GNU Octave's Timsort]