Flashsort
Flashsort is a distribution sorting algorithm showing linear computational complexity for uniformly distributed data sets and relatively little additional memory requirement. The original work was published in 1998 by Karl-Dietrich Neubert.
Concept
Flashsort is an efficient in-place implementation of histogram sort, itself a type of bucket sort. It assigns each of the input elements to one of buckets, efficiently rearranges the input to place the buckets in the correct order, then sorts each bucket. The original algorithm sorts an input array as follows:- Using a first pass over the input or a priori knowledge, find the minimum and maximum sort keys.
- Linearly divide the range into buckets.
- Make one pass over the input, counting the number of elements which fall into each bucket.
- Convert the counts of elements in each bucket to a prefix sum, where is the number of elements in bucket or less.
- Rearrange the input so all elements of each bucket are stored in positions where.
- Sort each bucket using insertion sort.
What distinguishes flash sort is step 5: an efficient in-place algorithm for collecting the elements of each bucket together in the correct relative order using only words of additional memory.
Memory efficient implementation
The Flashsort rearrangement phase operates in cycles. Elements start out "unclassified", then are moved to the correct bucket and considered "classified". The basic procedure is to choose an unclassified element, find its correct bucket, exchange it with an unclassified element there, mark it as classified, and then repeat with the just-exchanged unclassified element. Eventually, the element is exchanged with itself and the cycle ends.The details are easy to understand using two variables per bucket. The clever part is the elimination of one of those variables, allowing twice as many buckets to be used and therefore half as much time spent on the final sorting.
To understand it with two variables per bucket, assume there are two arrays of additional words: is the upper limit of bucket, while is a index into bucket, so.
We maintain the loop invariant that each bucket is divided by into an unclassified prefix and a classified suffix. Initially and all elements are unclassified. As sorting proceeds, the are decremented until for all and all elements are classified into the correct bucket.
Each round begins by finding the first incompletely classified bucket and taking the first unclassified element in that bucket where. Copy to a temporary variable and repeat:
- Compute the bucket to which belongs.
- Let be the location where will be stored.
- Exchange with, i.e. store in while fetching the previous value thereby displaced.
- Decrement to reflect the fact that is now correctly classified.
- If, restart this loop with the new.
- If, this round is over and find a new first unclassified element.
- When there are no more unclassified elements, the distribution into buckets is complete.
Although the preceding description uses to find the cycle leaders, it is in fact possible to do without it, allowing the entire -word array to be eliminated.
Suppose that we have classified all elements up to, and are considering as a potential new cycle leader. It is easy to compute its target bucket. By the loop invariant, it is classified if, and unclassified if is outside that range. The first inequality is easy to test, but the second appears to require the value.
It turns out that the induction hypothesis that all elements up to are classified implies that, so it is not necessary to test the second inequality.
Consider the bucket which position falls into. That is,. By the induction hypothesis, all elements below, which includes all buckets up to, are completely classified. I.e. no elements which belong in those buckets remain in the rest of the array. Therefore, it is not possible that.
The only remaining case is, which implies, Q.E.D.
Incorporating this, the flashsort distribution algorithm begins with as described above and. Then proceed:
- If, the distribution is complete.
- Given, compute the bucket to which it belongs.
- If, then is unclassified. Copy it a temporary variable and:
- * Let be the location where will be stored.
- * Exchange with, i.e. store in while fetching the previous value thereby displaced.
- * Decrement to reflect the fact that is now correctly classified.
- * If, compute the bucket to which belongs and restart this loop with the new.
- is now correctly classified. Increment and restart the loop.
- Maintain a variable identifying the first incompletely-classified bucket. Let to begin with, and when, the distribution is complete.
- Let. If, increment and restart this loop.
- Compute the bucket to which belongs.
- If, then and we are done with bucket. Increment and restart this loop.
- If, the classification is trivial. Decrement and restart this loop.
- If, then is unclassified. Perform the same classification loop as the previous case, then restart this loop.
Performance
The only extra memory requirements are the auxiliary vector for storing bucket bounds and the constant number of other variables used. Further, each element is moved only once. However, this memory efficiency comes with the disadvantage that the array is accessed randomly, so cannot take advantage of a data cache smaller than the whole array.As with all bucket sorts, performance depends critically on the balance of the buckets. In the ideal case of a balanced data set, each bucket will be approximately the same size. If the number of buckets is linear in the input size, each bucket has a constant size, so sorting a single bucket with an algorithm like insertion sort has complexity. The running time of the final insertion sorts is therefore.
Choosing a value for, the number of buckets, trades off time spent classifying elements and time spent in the final insertion sort step. For example, if is chosen proportional to, then the running time of the final insertion sorts is therefore.
In the worst-case scenarios where almost all the elements are in a few buckets, the complexity of the algorithm is limited by the performance of the final bucket-sorting method, so degrades to. Variations of the algorithm improve worst-case performance by using better-performing sorts such as quicksort or recursive flashsort on buckets which exceed a certain size limit.
For with uniformly distributed random data, flashsort is faster than heapsort for all and faster than quicksort for. It becomes about twice as fast as quicksort at. Note that these measurements were taken in the late 1990s, when memory hierarchies were much less dependent on cacheing.
Due to the in situ permutation that flashsort performs in its classification process, flashsort is not stable. If stability is required, it is possible to use a second array so elements can be classified sequentially. However, in this case, the algorithm will require additional memory.