Flashsort

From HandWiki
Short description: O(n) sorting algorithm

Flashsort is a distribution sorting algorithm showing linear computational complexity O(n) for uniformly distributed data sets and relatively little additional memory requirement. The original work was published in 1998 by Karl-Dietrich Neubert.[1]

Concept

Flashsort is an efficient in-place implementation of histogram sort, itself a type of bucket sort. It assigns each of the n input elements to one of m buckets, efficiently rearranges the input to place the buckets in the correct order, then sorts each bucket. The original algorithm sorts an input array A as follows:

  1. Using a first pass over the input or a priori knowledge, find the minimum and maximum sort keys.
  2. Linearly divide the range [Amin, Amax] into m buckets.
  3. Make one pass over the input, counting the number of elements Ai which fall into each bucket. (Neubert calls the buckets "classes" and the assignment of elements to their buckets "classification".)
  4. Convert the counts of elements in each bucket to a prefix sum, where Lb is the number of elements Ai in bucket b or less. (L0 = 0 and Lm = n.)
  5. Rearrange the input so all elements of each bucket b are stored in positions Ai where Lb−1 < iLb.
  6. Sort each bucket using insertion sort.

Steps 1–3 and 6 are common to any bucket sort, and can be improved using techniques generic to bucket sorts. In particular, the goal is for the buckets to be of approximately equal size (n/m elements each),[1] with the ideal being division into m quantiles. While the basic algorithm is a linear interpolation sort, if the input distribution is known to be non-uniform, a non-linear division will more closely approximate this ideal. Likewise, the final sort can use any of a number of techniques, including a recursive flash sort.

What distinguishes flash sort is step 5: an efficient O(n) in-place algorithm for collecting the elements of each bucket together in the correct relative order using only m 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 (which must exist, because we counted the size of each bucket ahead of time), 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 (word-sized) 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 O(n2) sorting.

To understand it with two variables per bucket, assume there are two arrays of m additional words: Kb is the (fixed) upper limit of bucket b (and K0 = 0), while Lb is a (movable) index into bucket b, so Kb−1LbKb.

We maintain the loop invariant that each bucket is divided by Lb into an unclassified prefix (Ai for Kb−1 < iLb have yet to be moved to their target buckets) and a classified suffix (Ai for Lb < iKb are all in the correct bucket and will not be moved again). Initially Lb = Kb and all elements are unclassified. As sorting proceeds, the Lb are decremented until Lb = Kb−1 for all b and all elements are classified into the correct bucket.

Each round begins by finding the first incompletely classified bucket c (which has Kc−1 < Lc) and taking the first unclassified element in that bucket Ai where i = Kc−1 + 1. (Neubert calls this the "cycle leader".) Copy Ai to a temporary variable t and repeat:

  • Compute the bucket b to which t belongs.
  • Let j = Lb be the location where t will be stored.
  • Exchange t with Aj, i.e. store t in Aj while fetching the previous value Aj thereby displaced.
  • Decrement Lb to reflect the fact that Aj is now correctly classified.
  • If ji, restart this loop with the new t.
  • If j = i, this round is over and find a new first unclassified element Ai.
  • When there are no more unclassified elements, the distribution into buckets is complete.

When implemented with two variables per bucket in this way, the choice of each round's starting point i is in fact arbitrary; any unclassified element may be used as a cycle leader. The only requirement is that the cycle leaders can be found efficiently.

Although the preceding description uses K to find the cycle leaders, it is in fact possible to do without it, allowing the entire m-word array to be eliminated. (After the distribution is complete, the bucket boundaries can be found in L.)

Suppose that we have classified all elements up to i−1, and are considering Ai as a potential new cycle leader. It is easy to compute its target bucket b. By the loop invariant, it is classified if Lb < iKb, and unclassified if i is outside that range. The first inequality is easy to test, but the second appears to require the value Kb.

It turns out that the induction hypothesis that all elements up to i−1 are classified implies that iKb, so it is not necessary to test the second inequality.

Consider the bucket c which position i falls into. That is, Kc−1 < iKc. By the induction hypothesis, all elements below i, which includes all buckets up to Kc−1 < i, 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 b < c.

The only remaining case is bc, which implies KbKci, Q.E.D.

Incorporating this, the flashsort distribution algorithm begins with L as described above and i = 1. Then proceed:[1][2]

  • If i > n, the distribution is complete.
  • Given Ai, compute the bucket b to which it belongs.
  • If iLb, then Ai is unclassified. Copy it a temporary variable t and:
    • Let j = Lb be the location where t will be stored.
    • Exchange t with Aj, i.e. store t in Aj while fetching the previous value Aj thereby displaced.
    • Decrement Lb to reflect the fact that Aj is now correctly classified.
    • If ji, compute the bucket b to which t belongs and restart this (inner) loop with the new t.
  • Ai is now correctly classified. Increment i and restart the (outer) loop.

While saving memory, Flashsort has the disadvantage that it recomputes the bucket for many already-classified elements. This is already done twice per element (once during the bucket-counting phase and a second time when moving each element), but searching for the first unclassified element requires a third computation for most elements. This could be expensive if buckets are assigned using a more complex formula than simple linear interpolation. A variant reduces the number of computations from almost 3n to at most 2n + m − 1 by taking the last unclassified element in an unfinished bucket as cycle leader:

  • Maintain a variable c identifying the first incompletely-classified bucket. Let c = 1 to begin with, and when c > m, the distribution is complete.
  • Let i = Lc. If i = Lc−1, increment c and restart this loop. (L0 = 0.)
  • Compute the bucket b to which Ai belongs.
  • If b < c, then Lc = Kc−1 and we are done with bucket c. Increment c and restart this loop.
  • If b = c, the classification is trivial. Decrement Lc and restart this loop.
  • If b > c, then Ai is unclassified. Perform the same classification loop as the previous case, then restart this loop.

Most elements have their buckets computed only twice, except for the final element in each bucket, which is used to detect the completion of the following bucket. A small further reduction can be achieved by maintaining a count of unclassified elements and stopping when it reaches zero.

Performance

The only extra memory requirements are the auxiliary vector L for storing bucket bounds and the constant number of other variables used. Further, each element is moved (via a temporary buffer, so two move operations) 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 m of buckets is linear in the input size n, each bucket has a constant size, so sorting a single bucket with an O(n2) algorithm like insertion sort has complexity O(12) = O(1). The running time of the final insertion sorts is therefore m ⋅ O(1) = O(m) = O(n).

Choosing a value for m, the number of buckets, trades off time spent classifying elements (high m) and time spent in the final insertion sort step (low m). For example, if m is chosen proportional to n, then the running time of the final insertion sorts is therefore m ⋅ O(n2) = O(n3/2).

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 O(n2). 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.[2][3]

For m = 0.1 n with uniformly distributed random data, flashsort is faster than heapsort for all n and faster than quicksort for n > 80. It becomes about twice as fast as quicksort at n = 10000.[1] 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 O(n) additional memory.

See also

References

  1. 1.0 1.1 1.2 1.3 Neubert, Karl-Dietrich (February 1998). "The Flashsort1 Algorithm". Dr. Dobb's Journal 23 (2): 123–125, 131. http://www.ddj.com/architect/184410496. Retrieved 2007-11-06. 
  2. 2.0 2.1 Neubert, Karl-Dietrich (1998). "The FlashSort Algorithm". http://www.neubert.net/FSOIntro.html. 
  3. Xiao, Li; Zhang, Xiaodong; Kubricht, Stefan A. (2000). "Improving Memory Performance of Sorting Algorithms: Cache-Effective Quicksort". ACM Journal of Experimental Algorithmics 5. doi:10.1145/351827.384245. http://jea.acm.org/ARTICLES/Vol5Nbr3/node4.html. Retrieved 2007-11-06. 

External links