Crates.io | radix_sort |
lib.rs | radix_sort |
version | 0.1.0 |
source | src |
created_at | 2015-09-10 19:51:02.996775 |
updated_at | 2015-12-11 23:55:29.371301 |
description | Radix Sort |
homepage | |
repository | https://github.com/lucidscape/radix_sort |
max_upload_size | |
id | 3026 |
size | 7,512 |
radix_sort is a radix sort implementation in Rust.
[Wikipedia](https://en.wikipedia.org/wiki/Radix_sort)
**Radix sort** sort is a ***non-comparative*** integer sorting algorithm that sorts data with integer keys by grouping keys by the individual digits which share the same significant position and value. A positional notation is required, but because integers can represent strings of characters (e.g., names or dates) and specially formatted floating point numbers, radix sort is not limited to integers.