Files
2021-01-16 01:33:27 +08:00

35 lines
1.2 KiB
Markdown
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [211. Design Add and Search Words Data Structure](https://leetcode.com/problems/design-add-and-search-words-data-structure/)
## 题目
Design a data structure that supports the following two operations:
void addWord(word)
bool search(word)
search(word) can search a literal word or a regular expression string containing only letters `a-z` or `.`. A `.` means it can represent any one letter.
**Example:**
addWord("bad")
addWord("dad")
addWord("mad")
search("pad") -> false
search("bad") -> true
search(".ad") -> true
search("b..") -> true
**Note:**You may assume that all words are consist of lowercase letters `a-z`.
## 题目大意
设计一个支持以下两种操作的数据结构:`void addWord(word)``bool search(word)``search(word)` 可以搜索文字或正则表达式字符串,字符串只包含字母 .  a-z  "." 可以表示任何一个字母。
## 解题思路
- 设计一个 `WordDictionary` 的数据结构,要求具有 `addWord(word)``search(word)` 的操作,并且具有模糊查找的功能。
- 这一题是第 208 题的加强版,在第 208 题经典的 Trie 上加上了模糊查找的功能。其他实现一模一样。