Module: resq_dsa
Contents
Modulesbloom- Bloom filter for approximate set membership.count_min- Count-Min sketch for frequency estimation.graph- Graph data structure and pathfinding algorithms.heap- Bounded heap for K-nearest neighbor tracking.trie- Trie prefix tree and Rabin-Karp pattern matching.
Module: bloom
Bloom filter for approximate set membership.Module: count_min
Count-Min sketch for frequency estimation.Module: graph
Graph data structure and pathfinding algorithms. Requires thestd feature (enabled by default) because it depends on
std::collections::{HashMap, HashSet, BinaryHeap, VecDeque}.
Module: heap
Bounded heap for K-nearest neighbor tracking.Module: trie
Trie prefix tree and Rabin-Karp pattern matching. Requires thestd feature (enabled by default) because it depends on
std::collections::HashMap.