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

Problems (4)