pub trait TupleSortDescSelection<T> {
// Required method
fn sort_desc_selection(&mut self);
}Expand description
Sort tuples in reverse order using selection sort
Required Methods§
Sourcefn sort_desc_selection(&mut self)
fn sort_desc_selection(&mut self)
Sort tuples in reverse order using selection sort
It has an O(n2) time complexity