提交 a8e8bc42 编写于 作者: A Alexey Milovidov

Added a comment

上级 aa8f3850
...@@ -17,13 +17,17 @@ ...@@ -17,13 +17,17 @@
/** Radix sort, has the following functionality: /** Radix sort, has the following functionality:
*
* Can sort unsigned, signed numbers, and floats. * Can sort unsigned, signed numbers, and floats.
* Can sort an array of fixed length elements that contain something else besides the key. * Can sort an array of fixed length elements that contain something else besides the key.
* Can sort an array and form sorted result containing some transformation of elements.
* Can do partial sort.
* Customizable radix size. * Customizable radix size.
* *
* LSB, stable. * Two flavours of radix sort are implemented:
* NOTE For some applications it makes sense to add MSB-radix-sort, *
* as well as radix-select, radix-partial-sort, radix-get-permutation algorithms based on it. * 1. LSB, stable.
* 2. MSB, unstable, with support for partial sort.
*/ */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册