Portability | Non-portable () |
---|---|
Stability | Experimental |
Maintainer | Dan Doel <[email protected]> |
Data.Vector.Algorithms.AmericanFlag
Description
This module implements American flag sort: an in-place, unstable, bucket sort. Also in contrast to radix sort, the values are inspected in a big endian order, and buckets are sorted via recursive splitting. This, however, makes it sensible for sorting strings in lexicographic order (provided indexing is fast).