3 unstable releases
Uses old Rust 2015
0.2.1 | Oct 8, 2016 |
---|---|
0.2.0 | Oct 8, 2016 |
0.1.0 | Sep 24, 2016 |
#291 in Profiling
52 downloads per month
Used in crate-race
580KB
93 lines
Quick Sort
Standard in-place quick sort implemented using Rust.
Note: This crate works on the stable channel of rust, but nightly is required if you want to run the benchmarks.
lib.rs
:
A standard in-place quick sort using a median of first, middle and last element in each slice for the pivot.