7 stable releases
new 1.0.6 | Oct 21, 2024 |
---|---|
1.0.4 | Aug 15, 2024 |
1.0.2 | Jul 22, 2024 |
1.0.1 | Jul 21, 2024 |
#1179 in Data structures
34 downloads per month
21KB
530 lines
Plain Trie
Plain trie is basic trie that allows mapping of any T to string composed of English alphabet letters.
let key = Key::new("touchstone").unwrap();
let mut trie = Trie::new();
trie.insert(3usize, &key);
assert!(trie.member(&key).is_some());