Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.99 KB

trie.en.md

File metadata and controls

25 lines (17 loc) · 1.99 KB

Trie

When this article is done (2020-07-13), there are 17 LeetCode problems about Trie (Prefix Tree). Among them, 2 problems are easy, 8 are medium, and 7 are hard.

Here we summarize four of them. Once you figure them out, Trie should not be a challenge to you anymore. Hope this article is helpful to you.

The main interface of a trie should include the following:

  • insert(word): Insert a word
  • search(word): Search for a word
  • startWith(prefix): Search for a word with the given prefix

Among all of the above, startWith is one of the most essential methods, which leads to the naming for 'Prefix Tree'. You can start with 208.implement-trie-prefix-tree to get yourself familiar with this data structure, and then try to solve other problems.

Here's the graph illustration of a trie:

As the graph shows, each node of the trie would store a character and a boolean isWord, which suggests whether the node is the end of a word. There might be some slight differences in the actual implementation, but they are essentially the same.

Related Problems' Solutions in this Repo (To Be Updated)