Created
September 3, 2018 13:51
-
-
Save typerandom/33bf0302be0cc75996a0f42488ea7fff to your computer and use it in GitHub Desktop.
Python function to create a trie from a list of words.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def create_trie(words, tokenize_fn=None, count_key='__count__', is_word_key='__is_word__'): | |
top_node = {} | |
if not tokenize_fn: | |
tokenize_fn = lambda word: list(word) | |
for word in words: | |
cursor = top_node | |
tokens = tokenize_fn(word) | |
tokens_length = len(tokens) | |
for index, token in enumerate(tokens): | |
parent_node = cursor | |
current_node = cursor.get(token, None) | |
is_last_item = index == tokens_length - 1 | |
if current_node is None: | |
current_node = {} | |
cursor[token] = current_node | |
if is_last_item: | |
parent_node[count_key] = parent_node.get(count_key, 0) + 1 | |
current_node[is_word_key] = True | |
cursor = current_node | |
return top_node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment