๐ฎ Tries (Practice)
Companion to the Tries (Prefix Trees) guide. Build a trie and support insert + prefix search. Edit and run the code right here โ it executes in your browser.
๐ Your turnโ
Loading editorโฆ
๐ง Challenge yourselfโ
- Add a
search(word)that requires a full word match. - Collect all words with a given prefix (autocomplete).
- How does a trie relate to how tokenizers store vocab?
Continue the learning path โ Segment Tree Fenwick