Read More224 views2 minute read LeetCode211. Design Add and Search Words Data StructureByWayne15/08/2023 This problem asks us to build a word dictionary, which is obviously to use Trie. But it also asks to support dots ‘.’ where dots can match any letter. Read More 0 0 0 0
Read More155 views2 minute read LeetCode208. Implement Trie (Prefix Tree)ByWayne15/08/2023 This problem is asking us to implement a very basic Trie. Read More 0 0 0 0
Read More277 views2 minute read AlgorithmTrieByWayne13/08/2023 Trie is a k-ary search tree. It can store a large amount of strings and provide efficient string search. Read More 0 0 0 0