Burstsort

From Wikipedia, the free encyclopedia

Burstsort and its variants are cache-efficient algorithms for sorting strings and are faster than quicksort and radix sort for large data sets.

Burstsort algorithms use tries to store prefixes of strings, with binary search trees as end nodes containing sorted, unique, suffixes.

[edit] References