码迷,mamicode.com
首页 > 其他好文 > 详细

Add and Search Word

时间:2016-05-13 01:15:10      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

题目描述:

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.

解题思路:使用字典树(trie)


AC代码如下(时间:85ms

class TrieNode {
public:
	// Initialize your data structure here.
	TrieNode(){
		m_isWord = false;
		for (int i = 0; i < 26; ++i){
			next[i] = NULL;
		}
	}
	void setIsWord(bool isWord){
		m_isWord = isWord;
	}
	bool getIsWord(void){
		return m_isWord;
	}
public:
	bool m_isWord;
	TrieNode* next[26];
};

class WordDictionary {
public:
	WordDictionary(){
		root = new TrieNode();
	}
	// Adds a word into the data structure.
	void addWord(string word) {
		int len = word.length();
		if (len == 0) return;
		TrieNode* p = root;
		for (int i = 0; i < len; ++i){
			if (p->next[word[i] - 'a'] == NULL){
				p->next[word[i] - 'a'] = new TrieNode();
				p = p->next[word[i] - 'a'];
			}
			else{
				p = p->next[word[i] - 'a'];
			}
		}
		p->setIsWord(true);
	}
	bool search(string word){
		return search(word, 0, root);
	}
	// Returns if the word is in the data structure. A word could
	// contain the dot character '.' to represent any one letter.
	bool search(const string& word,int curIndex,TrieNode* curNode) {
		if (curIndex == word.length()) return curNode->getIsWord();
		if (word[curIndex] == '.'){
			bool res = false;
			for (int i = 0; i < 26; ++i){
				if (curNode->next[i] != NULL){
					res = search(word, curIndex + 1, curNode->next[i]);
					if (res) return true;
				}
			}
			return false;
		}
		else{
			if (curNode->next[word[curIndex] - 'a'] != NULL){
				return search(word, curIndex + 1, curNode->next[word[curIndex] - 'a']);
			}
			else{
				return false;
			}
		}
	}
private:
	TrieNode* root;
};

Add and Search Word

标签:

原文地址:http://blog.csdn.net/lyh642784803/article/details/51345992

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!