A hash map whose entries can be indexed into. This is just like indexmap, but the indices are stable (i.e., indices are not perturbed upon removal of an entry). This makes it an ideal data structure for implementing graphs.
The underlying hash map implementation (linear probing) is not particularly fast or smart. I'm more interested in the stable indices property than having a super-fast hash map at the moment. However, it'd be great to switch to either Robin Hood Hashing or to the SwissTable approach. The idea of stable indices can be applied to any hash map implementation.
HashMap
.Add this to your Cargo.toml
toml
[dependencies]
holyhashmap = "0.1"
and this to your crate root:
rust
extern crate holyhashmap;
For serde support, add this instead to your Cargo.toml
:
toml
[dependencies]
holyhashmap = { version = "0.1", features = ["serde"] }
Here's how one might implement a graph data structure utilizing indices:
```rust extern crate holyhashmap;
use holyhashmap::{HolyHashMap, EntryIndex};
type NodeIndex = EntryIndex;
struct Neighbors {
incoming: Vec
pub struct GraphN
to its neighbors.
nodes: HolyHashMap
// The edges in the graph. A mapping between node index pairs and the edge
// weight `E`.
edges: HolyHashMap<(NodeIndex, NodeIndex), E>,
} ```