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).
0
votes
1answer
57 views
How to use Timsort in javascript?
How can I use Timsort in Javascript format? there are a lot of documentations in Java, Python and C++, is it doable in JS also?
8
votes
3answers
406 views
Why isn't smoothsort more common? [closed]
From reading this article from Wikipedia on sorting algorithms, it would seem that smoothsort is the best sorting algorithm there is. It has top performance in all categories: best, average, and ...
4
votes
1answer
1k views
“Comparison method violates its general contract!” - TimSort and GridLayout
I made a color palette with a jPanel and a JLabel array in it. At first it worked well, but then i put some other jLabels out of the JPanel and added them some events. Now I keep getting this error:
...
0
votes
1answer
92 views
Can the performance in these scenarios be effectively improved by customizing Timsort?
Some of the characteristic features of the data sets I am working with are showing the following trends:-
First 50-70% of the array is almost sorted with the last 30% completely scrambled.
Will it ...
0
votes
0answers
24 views
Can anyone please explain the pseudocode of TimSort? [duplicate]
Possible Duplicate:
Grokking Timsort
I am not able top understand why TimSort performs better? There is no good explanation available on Google and what are the assumptions made when ...
-4
votes
1answer
192 views
the timsort algorithm implemented in python sorted() method
I want to know if there is any algorithm in PHP which would be the equivalent algorithm of the timsort algorithm implemented in Python for sorting lists ?
It so happened that I had to translate some ...
-2
votes
2answers
288 views
Clear description of Timsort
I have been Googleing and reading about Timsort on Wikipedia, and other resources.
Yet, I don't have a clear Idea of what is Timsort doing.
Can anyone describe the algorithm, or provide me with some ...
0
votes
1answer
115 views
Problems with Swenson's Timsort implementation while sorting structs
I found Swenson's C implementation of Timsort:
https://github.com/swenson/sort mentioned in one of the older SO questions.
I encountered two problems:
1)To use it I need to define SORT_CMP macro ...
3
votes
1answer
119 views
Timsort stack invariant - Why do you want to delay the merging as long as possible?
I am trying to understand Timsort algorithm, but I have trouble following the reason of implementing the stack invariant:
A > B+C
B > C
According to this document,
We would like to ...
1
vote
1answer
252 views
Index Array with TimSort in C#
I was looking into the "timsort" algorithm for doing some sorting on my fairly large data sets:
http://timsort4net.codeplex.com/
Typically I use Array.Sort(Keys, Items) where Items is an integer ...
2
votes
1answer
314 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 ...
0
votes
1answer
603 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 ...
9
votes
2answers
1k 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 ...
1
vote
1answer
241 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
600 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, ...
11
votes
3answers
4k 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.
...
17
votes
3answers
5k 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 ...
