Design Add and Search Words Data Structure || LeetCode Solution



Design Add and Search Words Data Structure

Medium






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.


C++ Solution

class WordDictionary {
public:

    /** Initialize your data structure here. */
    WordDictionary() {
        this->is_leaf = false;
        for(int i=0; i<26; i++)
            this->children[i] = NULL;
    }
    
    /** Adds a word into the data structure. */
    void addWord(string word) {
        WordDictionary* root = this;
        for (int i=0;i<word.length();i++)
        {
            int index = word[i] - 'a';
            if (root->children[index] == NULL)
                root->children[index] = new WordDictionary();
            root = root->children[index];
        }
        root->is_leaf = true;
    }
    
   
    /** Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter. */
    bool search(string word) {
        return helper(word, this);
    }
    
    
private:
    bool is_leaf;
    WordDictionary* children[26];
    
    bool helper(string subword, WordDictionary* ptr)
    {
        for(int i=0;i<subword.length();i++)
        {
            if (subword[i] == '.')
            {
                for (int j=0;j<26;j++)
                {
                    if(ptr->children[j]) {
                        if (helper(subword.substr(i+1), ptr->children[j]))
                            return true;
                    }
                }

            }
            else
            {
                int index = subword[i] - 'a';
                if (!ptr->children[index])
                    return false;
                ptr = ptr->children[index];
                continue;
            }
            return false;
        }
        if (ptr->is_leaf)
            return true;
        return false;
    }
};

Post a Comment

0 Comments

Ad Code

Responsive Advertisement