Problems / Tries / Implement Trie (Prefix Tree)
#61 Medium Time O(n) Space O(n) Animated

Implement Trie (Prefix Tree)

Implement a trie with insert, search, and startsWith methods.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern Prefix tree traversal

Store shared prefixes once so every character chooses the next edge in constant time.

Approach: Hash Map (TrieNode)
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps