Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Nearly-Optimal Mergesort

Sebastian Wild
August 20, 2018
350

Nearly-Optimal Mergesort

Nearly-optimal mergesort: Fast, practical sorting methods that optimally adapt to existing runs

Mergesort can make use of existing order in the input by picking up existing runs, i.e., sorted segments. Since the lengths of these runs can be arbitrary, simply merging them as they arrive can be wasteful—merging can degenerate to inserting a single elements into long run.

In this talk, I show that we can find an optimal merging order (up to lower order terms of costs) with negligible overhead and thereby get the same worst-case guarantee as for standard mergesort (up to lower order terms), while exploiting existing runs if present. I present two new mergesort variants, peeksort and powersort, that are simple, stable, optimally adaptive and fast in practice (never slower than standard mergesort and Timsort, but significantly faster on certain inputs).

I gave this talk at ESA 2018 and it is based on joint work with Ian Munro. The paper and further information can be found on my website:
https://www.wild-inter.net/publications/munro-wild-2018

Sebastian Wild

August 20, 2018
Tweet

Transcript

  1. Nearly-Optimal Mergesorts Fast, Practical Sorting Methods That Optimally Adapt to

    Existing Runs Sebastian Wild [email protected] joint work with Ian Munro ESA 2018 26th Annual European Symposium on Algorithms Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 0 / 15
  2. Outline 1 Adaptive Sorting – Status Quo 1 Adaptive Sorting

    – Status Quo 2 Natural Mergesort 2 Natural Mergesort 3 Peeksort 3 Peeksort 4 Powersort 4 Powersort 5 Experiments 5 Experiments Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 0 / 15
  3. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  4. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  5. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  6. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  7. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  8. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  9. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optimal algorithms known for many measures of presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  10. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  11. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Want: Optimal up to lower order terms practical methods low overhead for detecting presortedness competitive on inputs without presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  12. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Want: Optimal up to lower order terms practical methods low overhead for detecting presortedness competitive on inputs without presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  13. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Want: Optimal up to lower order terms practical methods low overhead for detecting presortedness competitive on inputs without presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  14. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Want: Optimal up to lower order terms practical methods low overhead for detecting presortedness competitive on inputs without presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  15. Adaptive Sorting Adaptive algorithm: exploit “structure” of input adaptive sorting:

    exploit “presortedness” few inversions few runs few outliers ...many more optim up to constant factors! al algorithms known for many measures of presortedness Want: Optimal up to lower order terms practical methods low overhead for detecting presortedness competitive on inputs without presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 1 / 15
  16. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  17. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  18. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  19. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  20. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  21. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  22. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  23. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  24. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  25. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  26. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  27. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  28. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  29. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Observation: Timsort’s merge rules are quite intricate. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  30. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Observation: Timsort’s merge rules are quite intricate. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  31. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Observation: Timsort’s merge rules are quite intricate. ? Why these rules? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  32. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Observation: Timsort’s merge rules are quite intricate. ? Why these rules? ? Why are they so sensitive to sma cf. Java version! ll changes? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  33. State of the art 1 “fat-pivot” quicksort split < P,

    = P, > P average adapts to duplicate elements optimal up to small constant factor 1.386 (plain quicksort) 1.188 with median-of-3 1.088 with ninther low overhead implementation ... 2 Timsort adaptive mergesort variant ... adapts to existing runs but not optimally! factor ≥ 1.5 worse (Buss & Knop 2018) Timsort still broken! „it is still possible to cause the Java imple- mentation to fail: [...] causing an error at runtime in Java’s sorting method.” Observation: Timsort’s merge rules are quite intricate. ? Why these rules? ? Why are they so sensitive to sma cf. Java version! ll changes? ... and can’t we find simpler rules? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 2 / 15
  34. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  35. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  36. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  37. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Comparison Lower Bound n! permutations in total Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  38. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Comparison Lower Bound n! permutations in total but sorted within runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  39. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Comparison Lower Bound n! permutations in total but sorted within runs n! L1! · · · Lr! possible inputs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  40. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Comparison Lower Bound n! permutations in total but sorted within runs n! L1! · · · Lr! possible inputs Need lg n! L1! · · · Lr! = H L1 n , . . . , Lr n · n − O(n) comparisons Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  41. Run-Length Entropy Our measure of unsortedness: runs maximal contiguous sorted

    range simple version: lg(#runs) fine-grained version: entropy of run lengths runs lengths L1, . . . , Lr H L1 n , . . . , Lr n = r i=1 Li n lg n Li Comparison Lower Bound n! permutations in total but sorted within runs n! L1! · · · Lr! possible inputs Need lg n! L1! · · · Lr! = H L only H in the following 1 n , . . . , Lr n · n − O(n) comparisons Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  42. Outline 1 Adaptive Sorting – Status Quo 1 Adaptive Sorting

    – Status Quo 2 Natural Mergesort 2 Natural Mergesort 3 Peeksort 3 Peeksort 4 Powersort 4 Powersort 5 Experiments 5 Experiments Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 3 / 15
  43. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Conceptually

    two steps: 1 Find runs in input. 2 Merge them Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  44. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Concep

    interleaved in code tually two steps: 1 Find runs in input. 2 Merge them Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  45. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Concep

    interleaved in code tually two steps: 1 Find runs in input. 2 Merge them Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  46. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Concep

    interleaved in code tually two steps: 1 Find runs in input. 2 Merge them Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  47. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Concep

    interleaved in code tually two steps: 1 Find runs in input. 2 Merge them in some order. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  48. Natural Mergesort “natural” mergesort = run-adaptive mergesort (Knuth 1973) Concep

    interleaved in code tually two steps: 1 Find runs in input. 2 Merge them in some order (Knuth: simple bottom-up) . Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  49. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  50. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  51. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  52. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  53. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  54. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  55. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  56. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  57. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  58. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  59. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  60. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  61. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  62. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge costs cost of merge := size of output ≈ memory transfers #cmps total cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  63. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge costs cost of merge := size of output ≈ memory transfers #cmps total cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  64. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge costs cost of merge := size of output ≈ memory transfers #cmps total cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  65. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge costs cost of merge := size of output ≈ memory transfers #cmps total cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  66. Natural Mergesort “natural” mergesort = run-adaptive mergesort Conceptually two steps:

    1 Find runs in input. 2 Merge them in some order. Here: only binary merges 2 becomes: merge 2 runs, repeat until single run only stable sorts merge 2 adjacent runs Merge trees: 15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge costs cost of merge := size of output ≈ memory transfers #cmps total cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 4 / 15
  67. Mergesort meets search trees Different merge trees yield different cost!

    Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  68. Mergesort meets search trees Different merge trees yield different cost!

    2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  69. Mergesort meets search trees Different merge trees yield different cost!

    2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  70. Mergesort meets search trees Different merge trees yield different cost!

    2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 merge costs: 42 2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  71. Mergesort meets search trees Different merge trees yield different cost!

    2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 merge costs: 42 2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  72. Mergesort meets search trees Different merge trees yield different cost!

    2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 merge costs: 42 2 4 6 8 10 12 14 16 3 5 1 9 7 17 11 13 15 0 merge costs: 71 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  73. Mergesort meets search trees Different merge trees yield different cost!

    15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge cost = total area of Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  74. Mergesort meets search trees Different merge trees yield different cost!

    15 17 12 19 2 9 13 7 11 1 4 8 10 14 23 5 21 3 6 16 18 20 22 Merge cost = total area of = total length of paths to all array entries Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  75. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  76. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  77. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  78. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  79. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  80. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  81. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  82. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  83. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  84. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  85. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  86. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  87. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  88. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  89. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  90. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  91. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  92. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge simple (greedy) linear-time methods! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  93. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge simple (greedy) linear-time methods! almost optimal ( H + 2) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  94. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge simple (greedy) linear-time methods! almost optimal ( H + 2) ŏ have to store lengths Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  95. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge simple (greedy) linear-time methods! almost optimal ( H + 2) ŏ have to store lengths ŏ extra scan to detect runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  96. Mergesort meets search trees Different merge trees yield different cost!

    2 3 2 2 6 2 6 Merge cost = total area of = total length of paths to all array entries = weighted external path w leaf weight(w) · depth(w) length optimal merge tree = optimal BST for leaf weights L1, . . . , Lr How to compute good merge tree? Huffman merge merge shortest runs indep. discovered • Golin & Sedgewick 1993 • Takaoka 1998 • Barbay & Navarro 2009 • Chandramouli & Goldstein 2014 must sort lengths not stable Hu-Tucker merge optimal alphabetic tree have to store lengths complicated algorithm nearly-optimal ...70s are calling BST merge simple (greedy) linear-time methods! almost optimal ( H + 2) ŏ have to store lengths ŏ extra scan to detect runs avoidable? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  97. Outline 1 Adaptive Sorting – Status Quo 1 Adaptive Sorting

    – Status Quo 2 Natural Mergesort 2 Natural Mergesort 3 Peeksort 3 Peeksort 4 Powersort 4 Powersort 5 Experiments 5 Experiments Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 5 / 15
  98. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  99. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  100. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  101. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  102. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  103. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  104. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  105. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  106. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  107. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  108. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  109. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  110. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  111. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  112. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  113. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  114. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  115. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  116. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  117. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  118. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  119. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  120. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  121. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs empty if = e resp. s = r each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  122. Peeksort Method 1: weight-balancing (Mehlhorn 1975, Bayer 1975) choose root

    to balance subtree weights recurse on subtrees 1⁄2 1⁄2 1⁄2 Peeksort can simulate weight-balancing without knowing/storing all runs! “peek” at middle of array to find closest run boundary split there and recurse can avoid redundant work: find full run straddling midpoint 4 parameters for recursive calls: r e s stores outermost runs empty if = e resp. s = r each run scanned only once Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 6 / 15
  123. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n + (H + 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  124. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n + (H + 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  125. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n + (H + 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  126. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n + (H + 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  127. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  128. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  129. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  130. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  131. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  132. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  133. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  134. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths ŏ extra scan to detect runs one run at a time we load runs (peeking) without putting memory transfers to good use ... can’t we do better? Timsort does better: newly detected run usually merged soon after Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  135. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths ŏ extra scan to detect runs one run at a time we load runs (peeking) without putting memory transfers to good use ... can’t we do better? Timsort does better: newly detected run usually merged soon after Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  136. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths ŏ extra scan to detect runs one run at a time we load runs (peeking) without putting memory transfers to good use ... can’t we do better? Timsort does better: newly detected run usually merged soon after Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  137. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths ŏ extra scan to detect runs one run at a time we load runs (peeking) without putting memory transfers to good use ... can’t we do better? Timsort does better: newly detected run usually merged soon after Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  138. Analysis of peeksort Theorem (Horibe 1977, Bayer 1975:) Weight-balancing on

    leaf probabilities α1, . . . , αr yields a BST with search cost exp. #cmps to find random leaf chosen with prob. αi. C H(α1, . . . , αr) + 2. immediate corollary: Peeksort incurs merge cost M (H + 2)n. Peeksort needs C n detect runs + (H + merge cost 2)n cmps. both are optimal up to O(n) terms Peeksort exploits existing runs optimally up to lower order terms! Are we done then? ŏ have to store lengths ŏ extra scan to detect runs one run at a time we load runs (peeking) without putting memory transfers to good use ... can’t we do better? Timsort does better: newly detected run usually merged soon after Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  139. Outline 1 Adaptive Sorting – Status Quo 1 Adaptive Sorting

    – Status Quo 2 Natural Mergesort 2 Natural Mergesort 3 Peeksort 3 Peeksort 4 Powersort 4 Powersort 5 Experiments 5 Experiments Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 7 / 15
  140. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  141. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  142. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  143. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  144. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  145. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  146. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  147. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  148. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  149. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  150. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  151. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  152. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  153. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  154. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 15⁄16 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  155. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 15⁄16 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  156. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 15⁄16 Alternative view: node powers inner node midpoint interval = normalized interval [1..n] → [0, 1] power = min s.t. contains c · 2− depends only on 2 runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  157. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 15⁄16 Alternative view: node powers inner node midpoint interval = normalized interval [1..n] → [0, 1] power = min s.t. contains c · 2− depends only on 2 runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  158. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 4 4 3 3 4 4 2 2 4 4 3 3 4 4 1 1 4 4 3 3 4 4 2 2 4 4 3 3 4 4 15⁄16 Alternative view: node powers inner node midpoint interval = normalized interval [1..n] → [0, 1] power = min s.t. contains c · 2− depends only on 2 runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  159. The bisection heuristic Timsort proceed left to right: detect the

    next run push it onto stack of runs merge some devil is in the details runs from the stack cannot use weight-balancing Method 2 : bisection (Mehlhorn 1977) 1⁄2 1⁄2 1⁄4 3⁄4 weight-balancing chose this! 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 split out of range! no node created 1⁄2 1⁄4 3⁄4 1⁄8 7⁄8 4 4 3 3 4 4 2 2 4 4 3 3 4 4 1 1 4 4 3 3 4 4 2 2 4 4 3 3 4 4 15⁄16 3 2 1 2 4 Alternative view: node powers inner node midpoint interval = normalized interval [1..n] → [0, 1] power = min s.t. contains c · 2− depends only on 2 runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 8 / 15
  160. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  161. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  162. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  163. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  164. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 run1 run2 More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  165. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 run1 run2 a – 3 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  166. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 2 run1 run2 a – 3 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  167. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 2 run1 run2 a – 3 b – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  168. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 2 run1 run2 a – 3 b – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  169. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs a b c d e f 3 2 run1 run2 a – 3 b – 2 run stack merge More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  170. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs ab c d e f 2 run2 ab – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  171. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs ab c d e f 2 1 run1 run2 ab – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  172. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs ab c d e f 2 1 run1 run2 ab – 2 c – 1 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  173. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs ab c d e f 2 1 run1 run2 ab – 2 c – 1 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  174. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs ab c d e f 2 1 run1 run2 ab – 2 c – 1 run stack merge More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  175. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 run2 abc – 1 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  176. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 2 run1 run2 abc – 1 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  177. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 2 run1 run2 abc – 1 d – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  178. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 2 4 run1 run2 abc – 1 d – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  179. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 2 4 run1 run2 abc – 1 d – 2 e – 4 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  180. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abc d e f 1 2 4 abc – 1 d – 2 e – 4 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  181. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc d e f 1 2 4 abc – 1 d – 2 e – 4 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  182. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc d e f 1 2 4 abc – 1 d – 2 e – 4 run stack merge More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  183. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc d ef 1 2 abc – 1 d – 2 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  184. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc d ef 1 2 abc – 1 d – 2 run stack merge More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  185. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc def 1 abc – 1 run stack More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  186. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs merge-down phase abc def 1 abc – 1 run stack merge More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  187. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  188. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  189. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  190. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  191. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  192. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  193. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  194. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  195. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  196. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  197. Powersort Powersort proceed left to right: detect next run &

    compute power push run onto stack of runs while new node less powerful: merge topmost runs abcdef Theorem (Mehlhorn 1977:) The bisection heuristic yields a BST with search cost C H(α1, . . . , αr) + 2. same merge/cmps cost as Peeksort exploit runs optimally up to lower order terms! but: detects runs lazily! no extra scan! More good properties: power efficient to compute; O(1) with bitwise tricks (clz count leading zeros ) never stores more than lg n runs: powers on stack strictly monotonic (highest on top) stack height max power lg n + 1 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  198. Outline 1 Adaptive Sorting – Status Quo 1 Adaptive Sorting

    – Status Quo 2 Natural Mergesort 2 Natural Mergesort 3 Peeksort 3 Peeksort 4 Powersort 4 Powersort 5 Experiments 5 Experiments Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 9 / 15
  199. Experimental Evaluation Hypotheses: 1 Negligible overhead: Peek- and powersort are

    as fast as standard mergesort on inputs with high H. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 10 / 15
  200. Experimental Evaluation Hypotheses: 1 Negligible overhead: Peek- and powersort are

    as fast as standard mergesort on inputs with high H. 2 Run-adaptiveness helps: Adaptive methods are faster on inputs with low H. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 10 / 15
  201. Experimental Evaluation Hypotheses: 1 Negligible overhead: Peek- and powersort are

    as fast as standard mergesort on inputs with high H. 2 Run-adaptiveness helps: Adaptive methods are faster on inputs with low H. 3 Timsort’s weak point: Timsort is much slower than peek-/powersort on certain inputs. Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 10 / 15
  202. Experimental Evaluation Hypotheses: 1 Negligible overhead: Peek- and powersort are

    as fast as standard mergesort on inputs with high H. 2 Run-adaptiveness helps: Adaptive methods are faster on inputs with low H. 3 Timsort’s weak point: Timsort is much slower than peek-/powersort on certain inputs. Setup: Java implementations, reproduced in C++ mildly hand-tuned code sorting int[]s, length around 107 Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 10 / 15
  203. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4 5 6 7 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  204. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4 5 6 7 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  205. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4 5 6 7 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) galloping merge too slow Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  206. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4.2 4.4 4.6 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  207. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4.2 4.4 4.6 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) no significant difference to standard mergesort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  208. Negligible Overhead 1 Negligible overhead: Peek- and powersort are as

    good as standard mergesort on inputs with high H. Study: random permutations, Java runtimes time n lg n C++ 105 106 107 108 4.2 4.4 4.6 top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (Timsort w/o galloping) Arrays.sort(int[]) (quicksort, not stable) no significant difference to standard mergesort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 11 / 15
  209. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  210. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  211. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  212. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness 500 600 700 time (ms) top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (no galloping) Arrays.sort(int[]) merge cost Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  213. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness 500 600 700 time (ms) top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (no galloping) Arrays.sort(int[]) merge cost beat quicksort by 20% Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  214. Run-adaptiveness helps 2 Run-adaptiveness helps: Adaptive methods are faster on

    inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness 500 600 700 time (ms) top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (no galloping) Arrays.sort(int[]) merge cost beat quicksort by 20% Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 12 / 15
  215. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  216. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  217. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  218. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Timsort/trotsort has 40% higher merge cost 10% higher running time in Java Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  219. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Timsort/trotsort has 40% higher merge cost 10% higher running time in Java Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  220. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Timsort/trotsort has 40% higher merge cost 10% higher running time in Java 40% higher running time in C++ Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  221. Timsort’s weak point 3 Timsort’s weak point: Timsort is much

    slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr Java runtimes, n = 224 ≈ 1.6 · 107 C++ 1,200 1,400 1,600 1,800 2,000 time (ms) td-mergesort bu-mergesort peeksort powersort Timsort trotsort Arrays.sort(int[]) 0.8 0.9 1 1.1 1.2 1.3 merge costs (normalized) Timsort/trotsort has 40% higher merge cost 10% higher running time in Java 40% higher running time in C++ Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 13 / 15
  222. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  223. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  224. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  225. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  226. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  227. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  228. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  229. Conclusion We have seen optimal run-adaptivity by conceptually simple methods

    with negligible overhead in running time correctness and performance bounds easy to prove, including constant factor What’s next? improvements during merge? nearly-optimal multiway merge? preprocessing by patience sort to get longer runs? practical method that adapts to duplicates and runs? Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 14 / 15
  230. Icons made by Freepik and Gregor Cresnar from www.flaticon.com. Squid

    photo by LuqueStock / Freepik Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 16 / 15
  231. Appendix: Negligible Overhead – C++ 1 Negligible overhead: Peek- and

    powersort are as good as standard mergesort on inputs with high H. Study: random permutations, C++ runtimes time n lg n Java 104 105 106 107 108 3 4 5 top-down mergesort bottom-up mergesort boustrophedonic bottom-up peeksort powersort Timsort trotsort (Timsort w/o galloping) trotsort (Timsort w/o galloping, straight insertion sort) std::sort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 17 / 15
  232. Appendix: Negligible Overhead – C++ 1 Negligible overhead: Peek- and

    powersort are as good as standard mergesort on inputs with high H. Study: random permutations, C++ runtimes time n lg n Java 104 105 106 107 108 3 3.2 3.4 top-down mergesort bottom-up mergesort boustrophedonic bottom-up peeksort powersort Timsort trotsort (Timsort w/o galloping) trotsort (Timsort w/o galloping, straight insertion sort) std::sort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 17 / 15
  233. Appendix: Run-adaptiveness helps – merge cost 2 Run-adaptiveness helps: Adaptive

    methods are faster on inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, Java runtimes, n = 107 C++ ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness 500 600 700 time (ms) top-down mergesort bottom-up mergesort peeksort powersort Timsort trotsort (no galloping) Arrays.sort(int[]) 0.55 0.6 0.65 0.7 merge costs (normalized) beat quicksort by 20% back Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 18 / 15
  234. Appendix: Run-adaptiveness helps – C++ 2 Run-adaptiveness helps: Adaptive methods

    are faster on inputs with low H. Study: “random runs”: rp w/ ranges of Geo(1/√ n) sorted, C++ runtimes, n = 107 Java ≈ √ n runs, avg length √ n 10% of runs < 0.1 √ n 5% of runs > 5 √ n moderate presortedness 400 500 time (ms) top-down mergesort bottom-up mergesort boustrophedonic bottom-up peeksort powersort Timsort trotsort (Timsort w/o galloping) trotsort (Timsort w/o galloping, straight insertion sort) std::sort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 19 / 15
  235. Appendix: Timsort’s weak point – C++ 3 Timsort’s weak point:

    Timsort is much slower than peek-/powersort on certain inputs. Study: “Timsort-drags”: known family of bad-case sequences Rtim (n) by Buss & Knop 2018 L1, . . . , Lr C++ runtimes, n = 224 ≈ 1.6 · 107 Java 800 1,000 1,200 1,400 1,600 time (ms) top-down mergesort bottom-up mergesort boustrophedonic bottom-up peeksort powersort Timsort trotsort (Timsort w/o galloping) trotsort (Timsort w/o galloping, straight insertion sort) std::sort Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 20 / 15
  236. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  237. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  238. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  239. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  240. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  241. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  242. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  243. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  244. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  245. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  246. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  247. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  248. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  249. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  250. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) 2015 invariant does not hold w/o rule C! Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  251. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) 2015 invariant does not hold w/o rule C! CPython: Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  252. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) 2015 invariant does not hold w/o rule C! CPython: OpenJDK: rather increase stack ... Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15
  253. Timsort How does Timsort work? Timsort Proceed left to right:

    Find next Run Push Run onto stack Z Y X W . . . top Run-Stack While A / B / C / D applicable: Merge corresponding runs Rule A Z Y X . . . Z > X Z X+Y . . . Rule B ¬ A Z Y X Z . . . Y + Z > X Y+Z X . . . Rule C ¬ A , ¬ B Z Y X W Y . . . X + Y > W Y+Z X W . . . Rule D ¬ A , ¬ B , ¬ C Z Y . . . Z Y Y+Z . . . Advantages: profits from existing runs locality of reference for merges But: opaque rules! Goal: run lengths Fibonacci stack height ≈ logφ (n) 2015 invariant does not hold w/o rule C! CPython: OpenJDK: rather increase stack ... Stack still too small! (Auger et al. ESA 2018) Sebastian Wild Nearly-Optimal Mergesorts 2018-08-20 21 / 15