English

QuickXsort - A Fast Sorting Scheme in Theory and Practice

Data Structures and Algorithms 2018-11-06 v1

Abstract

QuickXsort is a highly efficient in-place sequential sorting scheme that mixes Hoare's Quicksort algorithm with X, where X can be chosen from a wider range of other known sorting algorithms, like Heapsort, Insertionsort and Mergesort. Its major advantage is that QuickXsort can be in-place even if X is not. In this work we provide general transfer theorems expressing the number of comparisons of QuickXsort in terms of the number of comparisons of X. More specifically, if pivots are chosen as medians of (not too fast) growing size samples, the average number of comparisons of QuickXsort and X differ only by o(n)o(n)-terms. For median-of-kk pivot selection for some constant kk, the difference is a linear term whose coefficient we compute precisely. For instance, median-of-three QuickMergesort uses at most nlgn0.8358n+O(logn)n \lg n - 0.8358n + O(\log n) comparisons. Furthermore, we examine the possibility of sorting base cases with some other algorithm using even less comparisons. By doing so the average-case number of comparisons can be reduced down to nlgn1.4106n+o(n)n \lg n- 1.4106n + o(n) for a remaining gap of only 0.0321n0.0321n comparisons to the known lower bound (while using only O(logn)O(\log n) additional space and O(nlogn)O(n \log n) time overall). Implementations of these sorting strategies show that the algorithms challenge well-established library implementations like Musser's Introsort.

Keywords

Cite

@article{arxiv.1811.01259,
  title  = {QuickXsort - A Fast Sorting Scheme in Theory and Practice},
  author = {Stefan Edelkamp and Armin Weiß and Sebastian Wild},
  journal= {arXiv preprint arXiv:1811.01259},
  year   = {2018}
}
R2 v1 2026-06-23T05:03:12.207Z