All Categories
Tries
Prefix tree for string operations.
O(L) per operation. Prefix matching, autocomplete, word search.
Key Concepts
Trie Node
Children map + isEnd flag
Prefix tree for string operations.
O(L) per operation. Prefix matching, autocomplete, word search.
Children map + isEnd flag