problem
solution
先定義TrieNode 資料結構
Trie 只有葉子才會存資料,其餘只是指標
1 | struct TrieNode{ |
analysis
search、insert、startWith operation
- time complexity
O(n)
, n = len(word)
先定義TrieNode 資料結構
Trie 只有葉子才會存資料,其餘只是指標
1 | struct TrieNode{ |
search、insert、startWith operation
O(n)
, n = len(word)