-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReplaceWords.cpp
69 lines (52 loc) · 1.51 KB
/
ReplaceWords.cpp
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
64
65
66
67
68
69
struct TrieNode {
unordered_map<char, TrieNode*> children;
bool isWord = false;
};
class Trie {
private:
TrieNode* root;
public:
Trie() { root = new TrieNode(); }
void insert(string word) {
TrieNode* p = root;
for (int i = 0; i < word.size(); i++) {
unordered_map<char, TrieNode*>::iterator iter =
p->children.find(word[i]);
if (iter == p->children.end()) {
p->children[word[i]] = new TrieNode();
}
p = p->children[word[i]];
}
p->isWord = true;
}
int search(string word) { // return the length of prefix
TrieNode* p = root;
for (int i = 0; i < word.size(); i++) {
if (p->children.find(word[i]) == p->children.end()) {
return word.size();
}
p = p->children[word[i]];
if (p->isWord) {
return i + 1;
}
}
return word.size();
}
};
class Solution {
public:
string replaceWords(vector<string>& dictionary, string sentence) {
Trie dict;
for (int i = 0; i < dictionary.size(); i++) {
dict.insert(dictionary[i]);
}
istringstream is(sentence);
string word;
getline(is, word, ' ');
string new_sentence = word.substr(0, dict.search(word));
while (getline(is, word, ' ')) {
new_sentence += " " + word.substr(0, dict.search(word));
}
return new_sentence;
}
};