本文整理汇总了Python中trie.Trie.add_word方法的典型用法代码示例。如果您正苦于以下问题:Python Trie.add_word方法的具体用法?Python Trie.add_word怎么用?Python Trie.add_word使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trie.Trie
的用法示例。
在下文中一共展示了Trie.add_word方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_data_structure
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import add_word [as 别名]
def create_data_structure(filepath):
"""Open file and load wordlist into Trie ds"""
ds = Trie()
with open(filepath, 'r') as fp:
for word in fp:
ds.add_word(word.rstrip())
return ds
示例2: Trie
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import add_word [as 别名]
#!/usr/bin/env python2.6
import json, os
from flask import Flask, Response, make_response
from trie import Trie
t = Trie()
words = open("words").read().split("\n")
[ t.add_word(word) for word in words ]
class Responder(object):
def __init__(self):
pass
def respond(self, data):
response = make_response(data)
response.headers["Access-Control-Allow-Origin"] = "*"
return response
cache = {}
class ChildFinder(object):
def __init__(self, trie=None):
self.trie = trie
def find_kids(self,word):
if word in cache:
answer = { "children": cache.get(word) }
else: