holyhashmap

Build Status Crates.io

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.

Features

Usage

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"] }

Example

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, outgoing: Vec, }

pub struct Graph where N: Eq + Hash, { // The nodes in the graph. A mapping of the node key N 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>,

} ```

License

MIT license