本文整理汇总了Python中trie.Trie.build_words方法的典型用法代码示例。如果您正苦于以下问题:Python Trie.build_words方法的具体用法?Python Trie.build_words怎么用?Python Trie.build_words使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类trie.Trie
的用法示例。
在下文中一共展示了Trie.build_words方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from trie import Trie [as 别名]
# 或者: from trie.Trie import build_words [as 别名]
def main( argv ):
trie = Trie()
global _debug
_debug = 0
global _test
_test = False
try:
opts, args = getopt.getopt( argv, 'hd:t', ['help', 'debug=', 'test'] )
except getopt.GetoptError:
print 'Invalid Option, see ../readme.txt'
sys.exit()
for opt, arg in opts:
if opt in ('-h', '--help'):
help()
sys.exit()
elif opt in ('-d', '--debug'):
arg = int(arg)
if arg >= 0 and arg <= 3:
_debug = arg
else:
print 'Currently support debug levels 0-3!'
elif opt in ('-t', '--test'):
_test = True
run_tests( trie )
sys.exit()
### Populate trie
#f = open( '../mpos/mopypos.txt', 'r' )
f = open( '../alt12dicts/2of12id.txt', 'r' )
read_dict( f, trie )
### Read in scrambled phrase
inp = raw_input( 'Enter scrambed charactes: ')
inp = inp.lower()
### Build list of words
words = trie.build_words( inp, trie.root )
if _debug > 1: print words
### Build list of phrases
phrases,f = trie.build_phrases( words, inp )
if _debug > 2: print phrases + '\n'
lexer = Lexer( trie )
parser = Parser()
### Tokenize and parse phrases
iterate_phrases( phrases, lexer, parser )