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

Download history 10/week @ 2024-02-19 32/week @ 2024-02-26 10/week @ 2024-03-04

52 downloads per month
Used in crate-race

MIT license

580KB
93 lines

Quick Sort Build Status

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.

No runtime deps