Function algos::sort::quick[][src]

pub fn quick<T: Copy + Ord, C: Fn(&T, &T) -> bool>(a: &mut [T], cmp: &C)

Quick Sort: Sort a slice according to the way you define the cmp parameter.

Case Time complexity Space complexity
Best: Ω(nlog(n))
Avrg: θ(nlog(n))
Worst: O(n^2) O(log(n))

Example

use algos::sort;

let mut v = [9, 3, 5, 7, 8, 7];
// Crescent sorting
sort::quick(&mut v, &|a,b| a<b);