Skip to content

708-145/TBSort

Repository files navigation

TBSort

TreeBinSort - A general O(n * log(log(n)) sort

TB scale sorting and beyond - order of magnitude speedup over std::sort at 10^12 element scale.

A blend of Sample- and Interpolationsort with an icing made of the comparison sort of choice.

Algorithm properties:

  • Stable: yes. Elements with the same sort key keep their order.
  • General: yes. No information about the distribution of data is assumed.
  • In-place: no. This is a field of ongoing research.
  • Parallel: no. This is a field of ongoing research.
  • Distributed: no. This is a field of ongoing research.
  • Time complexity: O(n * log (log n)). Achieving an even better time complexity is a field of ongoing research.
  • Caveat: has initial overhead. Break even point is currently at around 2M elements. With further optimization this can likely be reduced.
  • Caveat: limited to int type currently. More types will be added.

Algorithm idea:

  • Hybrid of interpolation sort, a type of radix sort, with a final comparison sort.
  • The interpolation step is content dependent by sampling randomly from the unsorted data.
  • The size of the sampled search tree and number of target bins is chosen such that no step uses more than O(n * log (log(n))) comparisons.

IDEA Style explanation

The algorithm consists of 3 phases:

  • Tree: sampling log n elements randomly and sorting them to form a search tree. This requires only in O(log n * log (log(n))) comparisons.
  • Bin: for each input element the closest left and right element is searched in the search tree. This requires O(n * log (log(n))) comparisons since the search tree contains log n elements. The distance to each side is used to determine the target bin for each element.
  • Sort: each target bin is sorted using a comparison sort. The average size of each bin is log n elements. Sorting all bins requires O(n * log (log(n))) comparisons since each of the n/log n bins needs O(log n * log (log(n))) comparisons to sort. If a bin happens to be much larger than expected the algorithm is called recursively and a new search tree is sampled for this bin.

License

This project is licensed under the GPLv3 License - see the LICENSE file for details.

About

TreeBinSort

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •