let mut trie = RadixTrie::new("salt");
trie.insert("same");
trie.exists("sam"); // true
trie.exists("salted"); // false
- Insertion with node key modification
- Insertion with new nodes creation
- Insertion with children nodes move if necessary
- Recursive browsing until the appropriate insertion node is found
- Check if a key exists
vagrant up
vagrant ssh
cargo test