我想为我的“玩具”Trie 实现编写一个迭代器。
添加已经像这样工作:
class Trie:
def __init__(self):
self.root = dict()
pass
def add(self, string, value):
global nops
current_dict = self.root
for letter in string:
nops += 1
current_dict = current_dict.setdefault(letter, {})
current_dict = current_dict.setdefault('value', value)
pass
添加的输出如下所示:
trie = Trie()
trie.add("hello",1)
trie.add("world",2)
trie.add("worlds",12)
print trie.root
{'h': {'e': {'l': {'l': {'o': {'value': 1}}}}}, 'w': {'o': {'r': {'l': {'d': {'s': {'value': 12}, 'value': 2}}}}}}
我知道,我需要一个__iter__
andnext
方法。
def __iter__(self):
self.root.__iter__()
pass
def next(self):
print self.root.next()
但是AttributeError: 'dict' object has no attribute 'next'
。我该怎么做?
[更新] 在完美的世界中,我希望输出是一个包含所有单词/条目及其对应值的字典。