1 2 3 4 5 6 7 8
///// The tree sort algorithm. ///// ///// Sorts the given `Vec` and returns the result. //pub fn tree_sort<T>(arr: Vec<T>) -> Vec<T> // where T: PartialEq + PartialOrd + Clone + Copy, //{ // todo!() //}