-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignAddandSearchWordsDataStructure
More file actions
63 lines (54 loc) · 1.64 KB
/
DesignAddandSearchWordsDataStructure
File metadata and controls
63 lines (54 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import java.util.*;
import java.util.lang.*;
import java.io.*;
class WordDictionary {
/** Initialize your data structure here. */
class TrieNode{
TrieNode[] children;
boolean isWord;
public TrieNode(){
children=new TrieNode[26];
isWord=false;
}
}
private TrieNode root;
public WordDictionary() {
root=new TrieNode();
}
/** Adds a word into the data structure. */
public void addWord(String word) {
TrieNode curr=root;
for(char c : word.toCharArray()){
int index=(int)(c-'a');
if(curr.children[index]==null){
curr.children[index]=new TrieNode();
}
curr=curr.children[index];
}
curr.isWord=true;
}
/** Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter. */
public boolean search(String word) {
return find(word,root,0);
}
private boolean find(String word,TrieNode curr,int index){
if(index==word.length()){ return curr.isWord;}
char c = word.charAt(index);
if(c=='.'){
for(int i=0;i<26;i++){
if(curr.children[i]!=null&&find(word,curr.children[i],index+1))
return true;
}
return false;
}
else{
return curr.children[c-'a']!=null && find(word,curr.children[c-'a'],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);
*/