648. Replace Words
Description
In English, we have a concept called root, which can be followed by some other word to form another longer word - let's call this word derivative. For example, when the root "help" is followed by the word "ful", we can form a derivative "helpful".
Given a dictionary consisting of many roots and a sentence consisting of words separated by spaces, replace all the derivatives in the sentence with the root forming it. If a derivative can be replaced by more than one root, replace it with the root that has the shortest length.
Return the sentence after the replacement.
Example 1:
Input: dictionary = ["cat","bat","rat"], sentence = "the cattle was rattled by the battery" Output: "the cat was rat by the bat"
Example 2:
Input: dictionary = ["a","b","c"], sentence = "aadsfasf absbs bbab cadsfafs" Output: "a a b c"
Constraints:
1 <= dictionary.length <= 10001 <= dictionary[i].length <= 100dictionary[i]consists of only lower-case letters.1 <= sentence.length <= 106sentenceconsists of only lower-case letters and spaces.- The number of words in
sentenceis in the range[1, 1000] - The length of each word in
sentenceis in the range[1, 1000] - Every two consecutive words in
sentencewill be separated by exactly one space. sentencedoes not have leading or trailing spaces.
Solutions
Solution: Trie
- Time complexity: O(n+m)
- Space complexity: O(n+m)
JavaScript
js
/**
* @param {string[]} dictionary
* @param {string} sentence
* @return {string}
*/
const replaceWords = function (dictionary, sentence) {
const trie = new Map();
const words = sentence.split(' ');
for (const word of dictionary) {
let current = trie;
for (const char of word) {
if (!current.has(char)) {
current.set(char, new Map());
}
current = current.get(char);
}
current.set('isWord', true);
}
for (let index = 0; index < words.length; index++) {
let current = trie;
let root = '';
for (const char of words[index]) {
if (current.has('isWord')) {
words[index] = root;
break;
}
if (!current.has(char)) break;
current = current.get(char);
root += char;
}
}
return words.join(' ');
};