I wanted the fastest algorithm to sort strings for my program, and after a search of the scientific journals I decided on Burstsort and its variants. There was, however, no implementation of Burstsort freely available so I wrote my own. Burstsort is currently the fastest algorithm for sorting strings. This library is licenced under the GPL, not the LGPL.
The second release improves greatly on the original. There are no memory leaks, the code is easier to read, only uses the C++ standard library instead of the C standard library, and it is even faster! Variable alphabets are now provided, and I will add support for orthographic sorting in the next version.
This is the first release. It works, but there are some limitations. Currently, only strings containing the 26 lowercase Latin characters are accepted by the Bursttrie. In the next version variable alphabets will be supported. The memory allocation strategy for the trie may be inefficient. I have not yet compared my implementation with the results presented in the papers on Burstsort.