首页 > 其他 > 详细

leetcode-211-添加与搜索单词-数据结构设计

时间:2019-10-02 17:29:15      阅读:121      评论:0      收藏:0      [点我收藏+]

题目描述:

技术分享图片

 

 方法一:

class WordDictionary:

    def __init__(self):
        """
        Initialize your data structure here.
        """
        #from collections import defaultdict
        self.lookup = {}

    def addWord(self, word: str) -> None:
        """
        Adds a word into the data structure.
        """
        tree = self.lookup
        for a in word:
            if a not in tree:
                tree[a] = {}
            tree = tree[a]
        tree["#"] = {}

    def search(self, word: str) -> bool:
        """
        Returns if the word is in the data structure. A word could contain the dot character ‘.‘ to represent any one letter.
        """
        def helper(word, tree):
            if not word:
                if "#" in tree:
                    return True
                return False
            if word[0] == ".":
                for t in tree:
                    if helper(word[1:], tree[t]):
                        return True
            elif word[0] in tree:
                if helper(word[1:], tree[word[0]]):
                    return True
            return False

        return helper(word,self.lookup)


# Your WordDictionary object will be instantiated and called as such:
# obj = WordDictionary()
# obj.addWord(word)
# param_2 = obj.search(word)

 

leetcode-211-添加与搜索单词-数据结构设计

原文:https://www.cnblogs.com/oldby/p/11617753.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!