208. Implement Trie (Prefix Tree) (Medium) - TengnanYao/daily_leetcode GitHub Wiki
class Trie(object):
def __init__(self):
"""
Initialize your data structure here.
"""
self.root = {}
def insert(self, word):
"""
Inserts a word into the trie.
:type word: str
:rtype: None
"""
cur = self.root
for c in word:
if c not in cur:
cur[c] = {}
cur = cur[c]
cur["@"] = True
def search(self, word):
"""
Returns if the word is in the trie.
:type word: str
:rtype: bool
"""
cur = self.root
for c in word:
if c not in cur:
return False
cur = cur[c]
return cur.get("@")
def startsWith(self, prefix):
"""
Returns if there is any word in the trie that starts with the given prefix.
:type prefix: str
:rtype: bool
"""
cur = self.root
for c in prefix:
if c not in cur:
return False
cur = cur[c]
return True
# Your Trie object will be instantiated and called as such:
# obj = Trie()
# obj.insert(word)
# param_2 = obj.search(word)
# param_3 = obj.startsWith(prefix)