簡單Trie樹

有一個txt文件,每一行是一個單詞,構建一棵字典樹 txt文件: 簡陋的實現,未優化: class node: def __init__(self, eachChar): self.val = eachChar self.count = 0 self.nextNode = dict() rootNode = node('#') for l
相關文章
相關標籤/搜索