rustHow to iterate sorted hashmap in Rust
Iterating over a sorted hashmap in Rust can be done using the iter() method. This method returns an iterator over the key-value pairs in the map, in ascending order by key.
Example code
use std::collections::HashMap;
let mut map = HashMap::new();
map.insert("a", 1);
map.insert("b", 2);
map.insert("c", 3);
for (key, value) in map.iter() {
println!("{}: {}", key, value);
}
Output example
a: 1
b: 2
c: 3
Code explanation
use std::collections::HashMap: imports theHashMaptype from thestd::collectionsmodule.let mut map = HashMap::new(): creates a new, emptyHashMapinstance.map.insert("a", 1): inserts a key-value pair into theHashMap.for (key, value) in map.iter(): iterates over the key-value pairs in theHashMap, in ascending order by key.println!("{}: {}", key, value): prints the key and value of the current iteration.
Helpful links
Related
- Rust negative for loop example
- Rust parallel loop example
- How to do a for loop with index in Rust
- How to iterate string lines in Rust
- How to loop until error in Rust
- Rust for loop range inclusive example
- Rust named loop example
- How to iterate and modify a vector in Rust
- How to iterate btreemap in Rust
- How to iterate through hashmap values in Rust
More of Rust
- How to use regex lookahead in Rust?
- How to replace strings using Rust regex?
- How to get size of pointer in Rust
- How to use Unicode in a regex in Rust?
- How to use non-capturing groups in Rust regex?
- How to use regex lookbehind in Rust?
- How to match a URL with a regex in Rust?
- How to use negation in Rust regex?
- How to ignore case in Rust regex?
- How to use the global flag in a Rust regex?
See more codes...