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: 3Code explanation
- use std::collections::HashMap: imports the- HashMaptype from the- std::collectionsmodule.
- let mut map = HashMap::new(): creates a new, empty- HashMapinstance.
- map.insert("a", 1): inserts a key-value pair into the- HashMap.
- for (key, value) in map.iter(): iterates over the key-value pairs in the- HashMap, in ascending order by key.
- println!("{}: {}", key, value): prints the key and value of the current iteration.
Helpful links
Related
- How to iterate in pairs in Rust
- Rust parallel loop example
- How to iterate hashset in Rust
- How to loop until error in Rust
- How to iterate over ndarray rows in Rust
- How to iterate linked list in Rust
- How to sleep in a loop in Rust
- How to iterate btreemap in Rust
- Rust for loop range inclusive example
- Rust named loop example
More of Rust
- How to replace a capture group using Rust regex?
- How to replace strings using Rust regex?
- Regex example to match multiline string in Rust?
- How to match the end of a line in a Rust regex?
- How to print a Rust HashMap?
- How to use regex lookbehind in Rust?
- How to perform matrix operations in Rust?
- How to match whitespace with a regex in Rust?
- How to use non-capturing groups in Rust regex?
- How to yield a thread in Rust?
See more codes...