当前位置: 首页>>代码示例>>Python>>正文


Python StringTrie.fromkeys方法代码示例

本文整理汇总了Python中pytrie.StringTrie.fromkeys方法的典型用法代码示例。如果您正苦于以下问题:Python StringTrie.fromkeys方法的具体用法?Python StringTrie.fromkeys怎么用?Python StringTrie.fromkeys使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pytrie.StringTrie的用法示例。


在下文中一共展示了StringTrie.fromkeys方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: open

# 需要导入模块: from pytrie import StringTrie [as 别名]
# 或者: from pytrie.StringTrie import fromkeys [as 别名]
from pytrie import StringTrie as trie
from bitstring import BitArray

words = open('words.txt')
t = trie.fromkeys(words.read().splitlines())

def evaluate(target):
	good = BitArray(len(target)) # all characters that are part of a meaningful word
	bestLength = 0 # length of the longest word
	bestPattern = BitArray(len(target)) # characters that form the longest word

	for i in range(len(target)):
		match = t.longest_prefix(key=target[i:], default="")
		if len(match)>0:
			temp = BitArray(len(target))
			temp.set(1, range(i, i+len(match))) # set mathcing character positions to 1
			good.set(1, range(i, i+len(match))) # set mathcing character positions to 1
			if len(match)>bestLength:
				bestLength = len(match)
				bestPattern = temp
	return bestPattern, good
开发者ID:adam-mihalyi,项目名称:evolution,代码行数:23,代码来源:words.py

示例2: longest_match_pytrie

# 需要导入模块: from pytrie import StringTrie [as 别名]
# 或者: from pytrie.StringTrie import fromkeys [as 别名]
def longest_match_pytrie(search):
    if longest_match_pytrie.trie is None:
        from pytrie import StringTrie
        longest_match_pytrie.trie = StringTrie.fromkeys(hosts)
    matches = longest_match_pytrie.trie.keys(prefix=search)
    return max(matches, key=len) if matches else ''
开发者ID:pombredanne,项目名称:trie-benchmark,代码行数:8,代码来源:longest_match.py


注:本文中的pytrie.StringTrie.fromkeys方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。