#hash-map #hash #chaining #separate #map #key-hash #hash-key

已删除 schm

通过分离链处理碰撞的简化HashMap实现

0.1.2 2022年4月30日
0.1.1 2022年4月30日
0.1.0 2022年4月30日

#24#key-hash

MIT 许可证

7KB
150

schm

使用两个字符串的哈希碰撞的基本示例

use std::{
    collections::hash_map::DefaultHasher,
    hash::{Hash, Hasher},
};

const DEFAULT_CAPACITY: u64 = 17;

fn hash_to_index<T: Hash>(key: T) -> u64 {
    let mut state = DefaultHasher::new();
    key.hash(&mut state);
    state.finish() % DEFAULT_CAPACITY
}

fn main() {
    let a = hash_to_index("orange"); //  Calculates to '8'
    let b = hash_to_index("blueberry"); //  Calculates to '8'

    assert_eq!(a, b)
}

在这里,由于分离链,碰撞被完全处理

use schm::HashMap;

fn main() {
    let mut map = HashMap::new();

    map.insert("orange", "ORANGE");
    map.insert("blueberry", "BLUEBERRY");

    assert_eq!(map.get("orange"), Some("ORANGE"));
    assert_eq!(map.get("blueberry"), Some("BLUEBERRY"));
}

无运行时依赖