Tagged Questions

Timsort is a sorting algorithm invented by Tim Peters, designed to take advantage of partial ordering in data. It has an average-case complexity of Θ(nlogn) and worst-case complexity of O(nlogn).

learn more… | top users | synonyms

14
votes
3answers
3k views

Grokking Timsort

There's a (relatively) new sort on the block called Timsort. It's been used as Python's list.sort, and is now going to be the new Array.sort in Java 7). There's some documentation and a tiny ...
6
votes
3answers
2k views

fast, clean, C, timsort implementation?

Does anyone know of a clean C/C++ implementation of timsort? The Python sources contain a description and code for the original timsort, but it is understandably full of python-specific calls. ...
3
votes
1answer
214 views

Comparison between timsort and quicksort

Why is it that I mostly hear about quicksort being the fastest overall sorting algorithm when timsort (according to wikipedia) seem to perform much better? Google didn't seem to turn up any kind of ...
2
votes
1answer
51 views

Common Lisp merge sort breaking down

To make a long story short: my algorithms class is too easy, so I've challenged myself to do all assignments in Common Lisp (for a few, specific reasons). I'm into day one of learning lisp and I've ...
1
vote
1answer
118 views

What method to call inside TimSort method?

TimSort is an algorithm that will be used by default in Java 7 for sorting. I found this source, but I don't understand which method to call since all of them are private. Can anybody understand? ...
1
vote
5answers
351 views

fastest way to sort the entries of a “smooth” 2D array

What is the fastest way to sort the values in a smooth 2D array? The input is a small filtered image: about 60 by 80 pixels single channel single or double precision float row major storage, ...
0
votes
0answers
18 views

Where can I find several significant sorting algorithms tests cases?

I want to develop a very efficient sorting algorithm based on some ideas that I have. The problem is that I want to test my algorithm's efficiency against the majority highly appreciated sorting ...