vote up 10 vote down star
1

Timsort is an adaptive, stable, natural mergesort. It has supernatural performance on many kinds of partially ordered arrays (less than lg(N!) comparisons needed, and as few as N-1), yet as fast as Python's previous highly tuned samplesort hybrid on random arrays.

Have you seen timsort used outside of CPython? Does it make sense?

flag

30% accept rate
why do you ask? without more context, your question cannot be answered. – hop Sep 30 '08 at 19:31
Have you noticed "Have you seen timsort used outside of CPython?" part? – Constantin Sep 30 '08 at 19:40
i have noticed it, and it still gives us no context. what would you learn from a simple "no" as answer? – hop Sep 30 '08 at 20:12
'timsort' is really very specific, although it won't mean much to you unless you actually know what timsort is. – Thomas Wouters Sep 30 '08 at 21:17

4 Answers

vote up 8 vote down check

Yes, it makes quite a bit of sense to use timsort outside of CPython, in specific, or Python, in general.

There is currently an effort underway to replace Java's "modified merge sort" with timsort, and the initial results are quite positive.

link|flag
Interesting ! – Constantin Jun 30 at 15:30
vote up 0 vote down

The description you linked looks completely general.

link|flag
Yes, but have you seen timsort used outside of CPython? – Constantin Sep 30 '08 at 19:40
vote up 5 vote down

It doesn't look particularly familiar, but "smart" mergesorts are pretty common out in the wide world of software.

As for whether it makes sense, that depends on what you're sorting, and the relative cost of comparisons vs. memory allocation. A sort that requires up to 2*N bytes of extra memory isn't going to be a good choice in a memory-constrained environment.

link|flag
vote up 13 vote down

The algorithm is pretty generic, but the benefits are rather Python-specific. Unlike most sorting routines, what Python's list.sort (which is what uses timsort) cares about is avoiding unnecessary comparisons, because generally comparisons are a lot more expensive than swapping items (which is always just a set of pointer copies) or even allocating some extra memory (because it's always just an array of pointers, and the overhead is small compared to the average overhead in any Python operation.)

If you're under similar constraints, then it may be suitable. I've yet to see any other case where comparisons are really that expensive, though :-)

link|flag
If comparisons are expensive, then a data-specific algorithm will usually perform better than a comparison-based one. – RafaƂ Dowgird Oct 1 '08 at 12:53
That is a good observation, and indeed probably the main reason you won't see timsort or anything close to it in the wild. – Thomas Wouters Oct 1 '08 at 13:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.