-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path648. Replace Words
98 lines (92 loc) · 2.36 KB
/
648. Replace Words
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
class TrieNode {
public:
TrieNode* children[26];
bool isEndOfWord;
TrieNode() {
isEndOfWord = false;
for (int i = 0; i < 26; ++i) {
children[i] = nullptr;
}
}
};
class Trie {
public:
TrieNode* root;
Trie() {
root = new TrieNode();
}
void insert(string word) {
TrieNode* curr = root;
for (char c : word) {
int index = c - 'a';
if (!curr->children[index]) {
curr->children[index] = new TrieNode();
}
curr = curr->children[index];
}
curr->isEndOfWord = true;
}
bool search(string word) {
TrieNode* curr = root;
for (char c : word) {
int index = c - 'a';
if (!curr->children[index]) {
return false;
}
curr = curr->children[index];
}
return curr->isEndOfWord;
}
bool startsWith(string prefix) {
TrieNode* curr = root;
for (char c : prefix) {
int index = c - 'a';
if (!curr->children[index]) {
return false;
}
curr = curr->children[index];
}
return true;
}
string findShortedPrefix(string word) {
TrieNode* curr = root;
for (int i = 0; i < word.length(); ++i) {
int index = word[i] - 'a';
if (!curr->children[index]) {
return word;
}
curr = curr->children[index];
if (curr->isEndOfWord) {
return word.substr(0, i + 1);
}
}
return word;
}
};
class Solution {
public:
string replaceWords(vector<string>& dictionary, string sentence) {
Trie trie;
for (string& word : dictionary) {
trie.insert(word);
}
vector<string> tokens;
string token;
for (char c : sentence) {
if (c == ' ') {
tokens.push_back(token);
token = "";
} else {
token += c;
}
}
tokens.push_back(token);
string result = "";
for (string& token : tokens) {
string prefix = trie.findShortedPrefix(token);
result += prefix + " ";
}
result.pop_back(); // Remove trailing space
return result;
}
};