트라이 구현
Trie 클래스를 구현합니다.
Trie() trie 개체를 초기화합니다.
void insert(String word) 트리에 문자열 word를 삽입합니다.
부울 검색(문자열 단어) 문자열 단어가 트리에 있으면(즉, 이전에 삽입된 경우) 참을 반환하고 그렇지 않으면 거짓을 반환합니다.
boolean startsWith(String prefix) 접두사 접두사가 있는 이전에 삽입된 문자열 단어가 있으면 true를 반환하고 그렇지 않으면 false를 반환합니다.
class TrieNode():
def __init__(self):
self.children = {}
self.endOfWord = False
class Trie:
def __init__(self):
self.root = TrieNode()
def insert(word):
cur = self.root
for c in word:
if c not in cur.children:
cur.children[c] = TrieNode()
cur = cur.children[c]
cur.endOfWord = True
def search(word):
cur = self.root
for c in word:
if c not in cur.children:
return False
cur = cur.children[c]
return cur.endOfWord
def startsWith(prefix):
cur = self.root
for c in prefix:
if c not in cur.children:
return False
cur = cur.children[c]
return True
Reference
이 문제에 관하여(트라이 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/salahelhossiny/implement-trie-16k2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)