From c0087bbd90ec6f5d236a74efe6b53c2670fe778a Mon Sep 17 00:00:00 2001 From: Qiming Xu <458173774@qq.com> Date: Fri, 16 Feb 2024 00:31:09 +0000 Subject: [PATCH] leetcode: finished #211 --- content/leetcode/2024/2.md | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/content/leetcode/2024/2.md b/content/leetcode/2024/2.md index 2a169426..e037548a 100644 --- a/content/leetcode/2024/2.md +++ b/content/leetcode/2024/2.md @@ -3,6 +3,51 @@ title: 2024.2 draft: false --- +# 2024.2.16 + +```python +# +# @lc app=leetcode.cn id=211 lang=python3 +# +# [211] 添加与搜索单词 - 数据结构设计 +# + +# @lc code=start +class WordDictionary: + def __init__(self): + self.trie = {} + self.end_of_word = "#" + + def addWord(self, word: str) -> None: + node = self.trie + for char in word: + node = node.setdefault(char, {}) + node[self.end_of_word] = self.end_of_word + + def search(self, word: str) -> bool: + def dfs(index, node): + if index == len(word): + return self.end_of_word in node + if word[index] != ".": + if word[index] not in node: + return False + return dfs(index + 1, node[word[index]]) + else: + for child in node: + if child != self.end_of_word and dfs(index + 1, node[child]): + return True + return False + + return dfs(0, self.trie) + + +# Your WordDictionary object will be instantiated and called as such: +# obj = WordDictionary() +# obj.addWord(word) +# param_2 = obj.search(word) +# @lc code=end +``` + # 2024.2.15 ```python