vote up 4 vote down star
6

Before you stone me for being a heretic, There is a sort that proclaims to be O(1), called "Bead Sort" (http://en.wikipedia.org/wiki/Bead_sort) , however that is pure theory, when actually applied I found that it was actually O(N * M), which is pretty pathetic.

That said, Lets list out some of the fastest sorts, and their best case and worst case speed in Big O notation.

flag

21 Answers

vote up 0 vote down

Burst sort (or rather its derivative C-burstsort) is kind of interesting. It's basically an O(n log n) algorithm but improves in scaling by utilizing CPU-cache better.

link|flag
vote up 2 vote down

As @csmba says, all lies in assumptions.

Now that we are making assumptions, lets asume that the data is sorted. Algorithm:

  1. Leave things as they are.

Here you have! An O(1) algorithm.

link|flag
vote up 0 vote down

Bogosort is both hysterically funny and O(1) if you implement the "Quantum" version ....

link|flag
vote up 3 vote down

Let's think about what O(1) really means: that the sorting time is constant regardless of the number of items to be sorted. It doesn't necessarily mean that this constant time is very fast. If you have an algorithm that sorts a billion items in the same amount of time it sorts 10 items, I'll bet its very slow for the 10 item scenario. So even if you could do it, it might not be very desirable.

link|flag
vote up 0 vote down

Two of my favorite sorting algorithms are Randomized quicksort and Merge sort, both of which have an expected worst-case running time of O(n lg n). They're also both fairly simple to implement, which is an added bonus.

link|flag
vote up 0 vote down

Radix Sort can be done very, very quickly. Using Loki's typelists you can specialise it for signed and unsigned values.

link|flag
vote up 2 vote down

@lassevk:

There is one type of sorting that is guaranteed to be O(1), and that is sorting two numbers:

You fail to grasp the concept of the big O notation. Even sorting 10000 numbers is O(1)! If the input size is fixed, the time the algorithm takes is always the same. As long as the input size n is bounded by a finite number k (which is constant), you get a runtime of O(k) = O(1) by definition of O(n). The big O notation cannot be applied meaningfully this way.

link|flag
vote up 0 vote down

@csmba:

That's actually a hash table, wich doesn't behave like a list and in fact doesn't require "sorting". Besides, stating "Data can be mapped 1:1 to an integer between 0 and X" isn't precisely a ligh weigh requisite and can prove to be difficult... specially if you don't know the data in advance.

link|flag
vote up 3 vote down

Actually it also depends where you sort. When sorting in memory you can use any of the well known sorting algorithms.
However when sorting must be done on disk you have to take into account the total time you have to wait for the disk to find and read the data (seektime + latency + transfer). Therefore the best searching algorithms are the ones that take into account the block size and have a good caching behaviour. For this you can best use the merge sort algorithm.

On a side note, in (fast) memory, binary trees are not slower than n-ary trees, because the time you need looking up a single level in an n-ary tree will kill the performance boost you get by the lower number of levels you have to traverse. This is not the case for disk-based datastructures. One of the most famous of those are b-trees which are in fact n-ary trees used in databases, file systems etc.

link|flag
vote up -3 vote down

Before you stone me for being a heretic

Burn it with fire!!!

link|flag
vote up 0 vote down

On a dataset that's already in a sequential block of memory, you could effectively get O(x) (where x is a constant independent of n) on a GPU for a radix or bucket sort. Of course the data would need to be suitable for these sorts. Since a modern GPU will let you do a lot of operations in parallel, you could process the whole sort in constant number of cycles. This would be kind of a toy solution though, since it would go above constant time for any data set that has more elements than the GPU has processing units. Some people have had a great deal of success writing fast sorting routines on GPU's though.

link|flag
vote up 34 vote down

I've developed the Quantum Sort which is not only O(1) but is actually O(0) for any size data set. It generates a quantum state for every permutation of the array, and when you observe it it collapses to the sorted state.

The implementation is proving a bit tricker than I imagined however.

~~ Mark Harrison ~~

link|flag
8  
I have a truly marvelous implementation of this proposition which this margin is too narrow to contain – Kyle Cronin Nov 25 '08 at 14:29
@nobody, I love that reference! – Simucal Feb 2 at 5:52
@nobody: I've up-voted the answer because of of your implicit reference alone! – Arafangion Jun 4 at 4:52
vote up 0 vote down

radix sorting is kind of interesting.

It's an O(n) sort (not comparison-based) that works with integers, though it can be extended to work with floating point values and even strings (with strings, it's O(n*m) where m is the string length).

A variant named the "american flag" sort allows the sort to be substantially in-place, too.

The most interesting thing is that practical implementation is possible that exhibits constant factors good enough to keep it competitive with traditional comparison-based sorts.

link|flag
vote up 0 vote down

The wiki link has the disclaimer that the bead sort works well on specialized hardware, but software implementations tend to perform poorly.

I think the question should be clarified to include only software based sorting algorithms, but not software implementations of hardware sorting.

link|flag
vote up 0 vote down

@csmba I think there is a typo. The last line should read : For arr(0) -> arr(x): if arr(i) <> NULL -> print i

Pretty interesting! Bead sort is also considering the upperbound of u(n) as a ressource.

link|flag
vote up 1 vote down

There IS an O(1) in time sort, It's O(n^2) or O(n Log N) in processors and O(n*2^(n^2)) or O(n*2^(n log n)) in space and in practice is limited in the size it can sort (but in practice so are all sorts)

  1. Each CPU grabs 2 numbers from the input, either 1 CPU for every possible pair or some selected subset
  2. The CPU's do a single compare
  3. Each CPU drives one line of a HUGE memory cache pre-loaded with a data set
  4. The single memory line addressed is a sorting map.
  5. N CPU's each grab a single element from the map
  6. Each CPU loads that element from the input
  7. Each CPU saves the loaded element to the output in the correct place

Not practical in reality but it could be used for small arrays in ASIC's or the like.

link|flag
vote up 0 vote down

By best case, you probably meant average case? I kind of like Bead Sort. Theory says its impossible to achieve better than nlogn sort with comparison-based algorithm, Bead Sort reminds that there might be alternative.

By the way, here is a video about Quick Sort ( in best case : O(n log n), worst case : O(n^2))

link|flag
vote up 1 vote down

For parallel computing you can get O(1) sort, using specialized hardware. You can also do O(log n) sorting, but that requires n^2 processors.

link|flag
vote up 0 vote down

@csmba:

How would you find the upperbound for the array size? I suppose this would work great if you were always working with sets of 50 whole numbers. Nicely done.

link|flag
vote up 4 vote down

There is a sort that proclaims to be O(1)

It doesn't actually, at least not on a von Neumann architecture. There are several other algorithms that achieve O(n) on positive integer sets (actually, the running times are more complex), e.g. counting sort and radix sort.

link|flag
They can't be O(n) if they keys aren't restricted beyond "integers": consider bit-by-bit radix sort, with longer and longer keys---you have to do bitlength-of-the-longest-key "rounds" of radix bucketing. – Jonas Kölker Jun 2 at 21:28
Jonas: absolutely true, which is why I stated that “the running times are more complex.” Just to mention a true Θ(n) algorithm, consider the Dutch flag sort. – Konrad Rudolph Jun 3 at 8:44
vote up 5 vote down

Assumptions is everything if you want to get below NLogN

Assumptions:

  1. Data can be mapped 1:1 to an integer between 0 and X
  2. You know what X is (meaning, X is capped)
  3. You are ok with allocating X*sizeOf(integer) for the purpose of sorting
  4. time to go from item to integer and integer to item is O(1)
  5. Either all items are unique (appear only once) or you don't mind "losing" duplicate items

Algorithm

  1. Allocate an array of size X
  2. For each input
    1. Translate input into its unique integer representation (0-X)
    2. save it in array[item's-Int]
  3. For arr(0) -> arr(x): if arr(i) <> NULL -> print arr(i)

Total time is O(N)


Answers to questions:

@Jonathan Holland

How would you find the upperbound for the array size?

Notice it was one of the assumptions. If you can't, then this will not work. It is not however to mean this is impossible. Think about the case the key is time in seconds, and the range of time is not beyond the scope of a integer. And you know that there is no chance there is more then one item per second.

link|flag

Your Answer

Get an OpenID
or

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