Proportion extend sort

From HandWiki
Short description: In-place, comparison-based sorting algorithm
Proportion extend sort
ClassSorting algorithm
Data structureArray
Worst-case performanceO(n log n)
Best-case performanceO(n log n)
Average performanceO(n log n)
Worst-case space complexityO(log n) auxiliary

Proportion extend sort (abbreviated as PESort) is an in-place, comparison-based sorting algorithm which attempts to improve on the performance, particularly the worst-case performance, of quicksort.

The basic partitioning operation in quicksort has a linear access pattern which is extremely efficient on modern memory hierarchies, but the performance of the algorithm is critically dependent on the choice of a pivot value. A good pivot will divide the data to be sorted into nearly equal halves. A poor choice will result in a grossly lopsided division, leaving one part almost as large as the original problem and causing O(n2) performance.

Proportion extend sort begins with a sorted prefix of k elements, then uses the median of that sample to partition the following pk elements. By bounding the size ratio p between the sample and the data being partitioned (i.e. the proportion by which the sorted prefix is extended), the imbalance is limited. In this, it has some similarities to samplesort.[1]

History

Proportion extend sort was published by Jing-Chao Chen in 2001[2] as an improvement on his earlier proportion split sort design.[3] Its average-case performance, which was only experimentally measured in the original paper, was analyzed by Richard Cole and David C. Kandathil in 2004[4] and by Chen in 2006,[5] and shown to require log2n + O(n) comparisons on average. A slightly refined variant, symmetry partition sort, was published in 2007.[6]

Algorithm

The algorithm begins with an array divided into a sorted part S adjacent to an unsorted part U. (The original proportion extend sort always had the sorted part precede the unsorted part; the symmetric variant allows either order.) It is possible to begin with the first element as the sorted part (a single element is always sorted), or to sort a small number of elements using a simpler insertion sort. The initially sorted elements may also be taken from across the array to improve performance in the case of pre-sorted data.

Next, and most critically, the length of the unsorted part |U| is bounded to a multiple p of the length of the sorted part |S|. Specifically, if |U| > p2|S|, then recursively sort S and the adjacent p|S| elements of U, make the result (p+1 times longer than the original[lower-alpha 1]) the new S, and repeat until the condition is satisfied.

If there is no limit on the unsorted part (p=∞), then the algorithm is equivalent to quicksort. If the unsorted part is of length 1 (p=0, almost), then the algorithm is equivalent to binary insertion sort. Values around p≈16 give the best average-case performance, competitive with quicksort,[6]:764 while smaller values improve worst-case performance.[lower-alpha 2]

Eliezer Albacea published a similar algorithm in 1995 called Leapfrogging samplesort where the size is limited so |U| ≤ |S|+1,[7][1] later generalized to (2k−1)(|S|+1).[8]

The sorted part of the array is divided in half (at the median), and one half is moved (by exchanging it with unsorted elements) to the far end of the array, so we have an initial partially partitioned array of the form LUR, where L is the left half of the sorted part, U is the bounded-length unsorted part, and R is the right half of the sorted part.

Then the standard quicksort partitioning step is performed on U, dividing it (in place) into UL and UR. UL and UR are not sorted, but every element of UL is less than or equal to the median, and every element of UR is greater or equal.[lower-alpha 3] The final result LULURR consists of two arrays of the necessary form (a sorted part adjacent to an unsorted part) and are sorted recursively.

Leapfrogging samplesort and the original proportion extend sort have the sorted part always precede the unsorted part, achieved by partitioning U before moving R, resulting in LRULUR, and then exchanging R with the end of UL, resulting in LULRUR. While the symmetric version is a bit trickier, it has the advantage that the L and R parts act as sentinel values for the partitioning loops, eliminating the need to test in the loop if the bounds of U have been reached.[1]

Most of the implementation refinements used for quicksort can be applied, including techniques for detecting and efficiently handling mostly sorted inputs.[9][6] In particular, sub-sorts below a certain size threshold are usually implemented using a simple insertion sort.

As with quicksort, the number of recursive levels can be limited to log2n if the smaller sub-sort is done first and the larger is implemented as a tail call. Unlike quicksort, the number of levels is bounded by O(log n) even if this is not done.[9]:781

Notes

  1. Note that different sources use different conventions for p: Chen uses the ratio of the unsorted part to the sorted part, so any p>0 makes sense, while others have it as the ratio of the total size to that of the sorted part, so only p>1 makes sense.
  2. The algorithm requires at most 1/log2(1 + 1/(2p2+2p−1)) n log2 n comparisons. For p ≤ 16, that constant may be approximated by 1.37p2+1.63p−0.5.
  3. This assumes an ascending sort. A descending sort requires the obvious adjustments.

References

  1. 1.0 1.1 Albacea, Eliezer A. (January 2012). "Average-case analysis of Leapfrogging samplesort". Philippine Science Letters 5 (1). http://philsciletters.org/2012/2012n1.5p3.pdf. 
  2. Chen, Jing-Chao (July 2001). "Proportion extend sort". SIAM Journal on Computing 31 (1): 323–330. doi:10.1137/S0097539798342903. 
  3. Chen, Jing-Chao (Fall 1996). "Proportion split sort". Nordic Journal of Computing 3 (3): 271–279. doi:10.1137/S0097539798342903. 
  4. Cole, Richard; Kandathil, David C. (14–17 September 2004). "The Average Case Analysis of Partition Sorts". Algorithms—ESA 2004: 12th Annual European Symposium. Bergen. pp. 240–251. doi:10.1007/978-3-540-30140-0_23. ISBN 3-540-23025-4. https://cs.nyu.edu/cole/papers/part-sort.pdf. 
  5. Chen, Jing-Chao (15 December 2006). "Efficient sample sort and the average case analysis of PEsort". Theoretical Computer Science 369 (1–3): 44–66. doi:10.1016/j.tcs.2006.07.017. 
  6. 6.0 6.1 6.2 Chen, Jing-Chao (11 September 2007). "Symmetry Partition Sort". Software: Practice and Experience 38 (7): 761–773. doi:10.1002/spe.851. 
  7. Albacea, Eliezer A. (1995). "Leapfrogging samplesort". Asian Computing Science Conference. doi:10.1007/3-540-60688-2_30. 
  8. Albacea, Eliezer A. (29 January 2018). "Generalized Leapfrogging Samplesort: A Class of O(n log22 n) Worst-Case Complexity and O(n log n) Average-Case Complexity Sorting Algorithms". arXiv:1801.09431 [cs.DS].
  9. 9.0 9.1 Chen, Jing-Chao (10 July 2004). "Building a new sort function for a C library". Software: Practice and Experience 34 (8): 777–795. doi:10.1002/spe.593. 

External links