pub fn quicksort<T, F>(v: &mut [T], is_less: F)where F: FnMut(&T, &T) -> bool,
slice_internals
使用模式破坏快速排序对 v 进行排序,这是 O(n*log(* n*)) 最坏的情况。
v