#sort #in-place #algorithm #quicksort

ironsort

Implementation of a fast in-place sorting algorithm

1 unstable release

Uses old Rust 2015

0.1.0 Aug 18, 2016

#6 in #quicksort

41 downloads per month
Used in crate-race

ISC license

4KB
72 lines

ironsort

A Rust implementation of the fast in-place sorting algorithm quicksort, without any unsafe code blocks <https://github.com/servo/rust-quicksort/blob/master/lib.rs#L7>.

License

Every file in this repository, except for as otherwise specified in the file itself, is licensed under the ISC license. See the LICENSE file for the full license text.


lib.rs:

quicksort

Quicksort is an efficient in-place sorting algorithm created by Tony Hoare.

No runtime deps