IncredibleThings

导航

LeetCode - Design Add and Search Words Data Structure

Design a data structure that supports adding new words and finding if a string matches any previously added string.

Implement the WordDictionary class:

WordDictionary() Initializes the object.
void addWord(word) Adds word to the data structure, it can be matched later.
bool search(word) Returns true if there is any string in the data structure that matches word or false otherwise. word may contain dots '.' where dots can be matched with any letter.
 

Example:

Input
["WordDictionary","addWord","addWord","addWord","search","search","search","search"]
[[],["bad"],["dad"],["mad"],["pad"],["bad"],[".ad"],["b.."]]
Output
[null,null,null,null,false,true,true,true]

Explanation
WordDictionary wordDictionary = new WordDictionary();
wordDictionary.addWord("bad");
wordDictionary.addWord("dad");
wordDictionary.addWord("mad");
wordDictionary.search("pad"); // return False
wordDictionary.search("bad"); // return True
wordDictionary.search(".ad"); // return True
wordDictionary.search("b.."); // return True
 

Constraints:

1 <= word.length <= 500
word in addWord consists lower-case English letters.
word in search consist of  '.' or lower-case English letters.
At most 50000 calls will be made to addWord and search.

注意判断结束recursion的条件。

class TrieNode {
    boolean isWord;
    TrieNode[] children;
    
    public TrieNode(char c) {
        isWord = false;
        children = new TrieNode[26];
    } 
}


class WordDictionary {
    private TrieNode root;
    
    /** Initialize your data structure here. */
    public WordDictionary() {
        root = new TrieNode(' ');
    }
    
    public void addWord(String word) {
        TrieNode cur = root;
        for (int i = 0; i< word.length(); i++) {
            char c = word.charAt(i);
            if(cur.children[c-'a'] == null) {
                cur.children[c-'a'] = new TrieNode(c);
            }
            cur = cur.children[c-'a'];
        }
        cur.isWord = true;
    }
    
    public boolean search(String word) {
        return helper(root, word.toCharArray(), 0);
    }
    
    public boolean helper(TrieNode node, char[] chars, int index) {
        if (index == chars.length) {
            return node.isWord;
        }
        if (chars[index] == '.') {
            for (int i = 0; i < node.children.length; i++) {
                if (node.children[i] != null && helper(node.children[i], chars, index+1)) {
                    return true;
                }
            }
            return false;
        }
        return node.children[chars[index] - 'a'] != null && helper(node.children[chars[index] - 'a'], chars, index+1);
    }
}

/**
 * Your WordDictionary object will be instantiated and called as such:
 * WordDictionary obj = new WordDictionary();
 * obj.addWord(word);
 * boolean param_2 = obj.search(word);
 */

 

posted on 2021-02-15 15:44  IncredibleThings  阅读(45)  评论(0编辑  收藏  举报