Simple collection datastructure to associate data with unique keys.
The key is of type usize
, and can therefore cheaply be passed around in favour of the actual data.
The advantage is that keys
can be cloned unbeatable cheaply and no hashing of keys has to ever take place. This also means no collisions can ever happen.
put
, remove
, get
, take
are all O(1) operations.
The Hotel
is backed by a Vec
and is very memory efficient. Thanks to this it's very much efficient to use on modern CPUs by virtue of inheriting the Vec
s cache-friendliness.
Here are examples
HashMap
replacement.Hotel
is the perfect place to store ownership of the Nodes and manage edges as keys.here's a simple Graph.
A -> B -> C
```rust
let mut nodes: Hotel
let key1 = nodes.put(Node::new(a)); let key2 = nodes.put(Node::new(b)); let key3 = nodes.put(Node::new(c)); edges.push( (key1, key2) ); edges.push( (key2, key3) ); ```