September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
28
Task/Sort-stability/Rust/sort-stability.rust
Normal file
28
Task/Sort-stability/Rust/sort-stability.rust
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
fn main() {
|
||||
let country_city = vec![("UK", "London"),
|
||||
("US", "New York"),
|
||||
("US", "Birmingham"),
|
||||
("UK", "Birmingham")];
|
||||
|
||||
let mut city_sorted = country_city.clone();
|
||||
city_sorted.sort_by_key(|k| k.1);
|
||||
|
||||
let mut country_sorted = country_city.clone();
|
||||
country_sorted.sort_by_key(|k| k.0);
|
||||
|
||||
|
||||
println!("Original:");
|
||||
for x in &country_city {
|
||||
println!("{} {}", x.0, x.1);
|
||||
}
|
||||
|
||||
println!("\nWhen sorted by city:");
|
||||
for x in &city_sorted {
|
||||
println!("{} {}", x.0, x.1);
|
||||
}
|
||||
|
||||
println!("\nWhen sorted by county:");
|
||||
for x in &country_sorted {
|
||||
println!("{} {}", x.0, x.1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue