Click here to Skip to main content
15,884,739 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
See more:
Does any body know of a really fast sort algorithm for semi sorted items in a list which would beat the internal QuickSort of a List<T> in the .net framework?
Posted
Comments
Sergey Alexandrovich Kryukov 4-Jan-12 12:55pm    
Good question (my 5), but I think the answer would depend on the definition of semi-sorted. You see, different algorithms works with different speeds on different data sets. When the data is random (still it would need the description of randomness, such as average size, total number...) you can do comparison. As soon as you say, "semi-sorted", there are different ways of getting this random semi-sorted state -- and comparison of algorithms can be different for different ways. Isn't it logical?
--SA
Mehdi Gholam 4-Jan-12 13:04pm    
I have an array of T (10000 items) which I sort then split in two. [ a new index I created for RaptorDB ] my profiler says about 20% of the time is in the quicksort routine, still twice the speed of b+tree.

1 solution

Not saying which is fastest but you may find these interesting:
- A Comparison of Sorting Algorithms[^]
- Comparison of several sorting algorithms[^]
- The Fastest Sorting Algorithm?[^]
 
Share this answer
 
Comments
Mehdi Gholam 5-Jan-12 8:20am    
Thanks 5'ed, I have found TimSort which is promising...
Wendelius 5-Jan-12 15:38pm    
Thanks, hopefully it performs better :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900