Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
29
Task/Sort-stability/Rust/sort-stability.rust
Normal file
29
Task/Sort-stability/Rust/sort-stability.rust
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
fn main() {
|
||||
let country_city = [
|
||||
("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