#sorting #radix #counting #allocate

no-std radsort

Radix sort implementation for sorting by scalar keys (integers, floats, chars, bools)

2 unstable releases

0.1.0 Apr 12, 2020
0.0.0 Apr 8, 2020

#566 in Algorithms

Download history 10322/week @ 2024-01-03 11525/week @ 2024-01-10 14270/week @ 2024-01-17 12152/week @ 2024-01-24 11577/week @ 2024-01-31 11119/week @ 2024-02-07 14790/week @ 2024-02-14 15822/week @ 2024-02-21 15878/week @ 2024-02-28 15060/week @ 2024-03-06 12803/week @ 2024-03-13 13753/week @ 2024-03-20 13896/week @ 2024-03-27 15216/week @ 2024-04-03 13485/week @ 2024-04-10 11863/week @ 2024-04-17

56,590 downloads per month
Used in 529 crates (8 directly)

MIT/Apache

48KB
521 lines

radsort

Crates.io Docs

radsort is a radix sort implementation for sorting by scalar keys (integers, floats, chars, bools).

All built-in scalar types can be used as sorting keys: Booleans, characters, integers, and floating point-numbers. To sort by multiple keys, put them in a tuple, starting from the most significant key. See Key for a full list of supported keys.

  • best and worst-case running time is O(n) – see benchmarks for more detailed performance characteristics
  • space complexity is O(n) – allocates temporary storage the size of the slice, for indirect sort see sort_by_cached_key
  • stable, i.e. does not reorder equal elements
  • uses #![no_std], but needs an allocator

This sort can be several times faster than slice::sort and slice::sort_unstable, typically on large slices (hundreds of elements or more). It performs worse on short slices and when using wide keys (16 bytes). See benchmarks to get a better picture of the performance characteristics.

radsort is an implementation of LSB radix sort, using counting sort to sort the slice by each digit (byte) of the key. As an optimization, the slice is sorted only by digits which differ between the keys. See the unopt module for more details and functions which don't use this optimization.

This implementation is based on radix sort by Pierre Terdiman, published at http://codercorner.com/RadixSortRevisited.htm, with select optimizations published by Michael Herf at http://stereopsis.com/radix.html.

Floating-point numbers

Floating-point number keys are effectively sorted according to their partial order (see PartialOrd), with NaN values at the beginning (before the negative infinity) and at the end (after the positive infinity), depending on the sign bit of each NaN.

Examples

Slices of scalar types (integers, floating-point numbers, Booleans, and characters) can be sorted directly:

let mut data = [2i32, -1, 1, 0, -2];

radsort::sort(&mut data);

assert_eq!(data, [-2, -1, 0, 1, 2]);

Use a key extraction function to sort other types:

let mut friends = ["Punchy", "Isabelle", "Sly", "Puddles", "Gladys"];

// sort by the length of the string in bytes
radsort::sort_by_key(&mut friends, |s| s.len());

assert_eq!(friends, ["Sly", "Punchy", "Gladys", "Puddles", "Isabelle"]);

To sort by two or more keys, put them in a tuple, starting with the most significant key:

struct Height { feet: u8, inches: u8, }

let mut heights = [
    Height { feet: 6, inches: 1 },
    Height { feet: 5, inches: 9 },
    Height { feet: 6, inches: 0 },
];

// sort by feet, if feet are equal, sort by inches
radsort::sort_by_key(&mut heights, |h| (h.feet, h.inches));

assert_eq!(heights, [
    Height { feet: 5, inches: 9 },
    Height { feet: 6, inches: 0 },
    Height { feet: 6, inches: 1 },
]);

No runtime deps