Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 940 Bytes

211.AddAndSearchWord_DataStructureDesign.md

File metadata and controls

34 lines (23 loc) · 940 Bytes

tags: Backtracking, Trie, Design

#[Leetcode 211] Add and Search Word - Data structure design 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.

For 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.

click to show hint.

You should be familiar with how a Trie works. If not, please work on this problem: Implement Trie (Prefix Tree) first.

Diffculty
Medium

Similar Problems
[LeetCode ] Implement Trie (Prefix Tree) Medium

Analysis