Skip to content

Instantly share code, notes, and snippets.

@typerandom
Created September 3, 2018 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save typerandom/33bf0302be0cc75996a0f42488ea7fff to your computer and use it in GitHub Desktop.
Save typerandom/33bf0302be0cc75996a0f42488ea7fff to your computer and use it in GitHub Desktop.
Python function to create a trie from a list of words.
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