当前位置:网站首页>【日常训练】648. 单词替换
【日常训练】648. 单词替换
2022-07-07 11:37:00 【Puppet__】
题目
在英语中,我们有一个叫做 词根(root) 的概念,可以词根后面添加其他一些词组成另一个较长的单词——我们称这个词为 继承词(successor)。例如,词根an,跟随着单词 other(其他),可以形成新的单词 another(另一个)。
现在,给定一个由许多词根组成的词典 dictionary 和一个用空格分隔单词形成的句子 sentence。你需要将句子中的所有继承词用词根替换掉。如果继承词有许多可以形成它的词根,则用最短的词根替换它。
你需要输出替换之后的句子。
示例 1:
输入:dictionary = [“cat”,“bat”,“rat”], sentence = “the cattle was rattled by the battery”
输出:“the cat was rat by the bat”
示例 2:
输入:dictionary = [“a”,“b”,“c”], sentence = “aadsfasf absbs bbab cadsfafs”
输出:“a a b c”
提示:
1 <= dictionary.length <= 1000
1 <= dictionary[i].length <= 100
dictionary[i] 仅由小写字母组成。
1 <= sentence.length <= 106
sentence 仅由小写字母和空格组成。
sentence 中单词的总量在范围 [1, 1000] 内。
sentence 中每个单词的长度在范围 [1, 1000] 内。
sentence 中单词之间由一个空格隔开。
sentence 没有前导或尾随空格。
代码
package dayLeetCode;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class dayleetcode648 {
// 模拟 注意要用set不然会时间超限
public String replaceWords(List<String> dictionary, String sentence) {
Set<String> set = new HashSet<>();
for (String str : dictionary){
set.add(str);
}
String[] s = sentence.split(" ");
// StringBuffer ansStr = new StringBuffer();
for (int j = 0; j < s.length; j++){
// 从每个单词的开头 怕断含不含给出词根
String str = s[j];
for (int i = 0; i < str.length(); i++){
if (set.contains(str.substring(0, i))){
s[j] = str.substring(0, i);
break;
}
}
// if (j == s.length - 1){
// ansStr.append(s[j]);
// }
// else{
// ansStr.append(s[j] + " ");
// }
}
return String.join(" ", s);
}
public static void main(String[] args) {
dayleetcode648 obj = new dayleetcode648();
List<String> dict = new ArrayList<>();
dict.add("cat");
dict.add("bat");
dict.add("rat");
String str = "the cattle was rattled by the battery";
System.out.println(obj.replaceWords(dict, str));
}
}
边栏推荐
- Realbasicvsr test pictures and videos
- [Presto profile series] timeline use
- PAcP learning note 3: pcap method description
- Redis只能做缓存?太out了!
- Distributed transaction solution
- Move base parameter analysis and experience summary
- 交付效率提升52倍,运营效率提升10倍,看《金融云原生技术实践案例汇编》(附下载)
- 最佳实践 | 用腾讯云AI意愿核身为电话合规保驾护航
- 10 张图打开 CPU 缓存一致性的大门
- 一文读懂数仓中的pg_stat
猜你喜欢
随机推荐
Write it down once Net a new energy system thread surge analysis
MongoDB的用户管理总结
Final review notes of single chip microcomputer principle
Xshell connection server changes key login to password login
Esp32 ① compilation environment
高端了8年,雅迪如今怎么样?
【黑马早报】华为辟谣“军师”陈春花;恒驰5预售价17.9万元;周杰伦新专辑MV 3小时播放量破亿;法华寺回应万元月薪招人...
最佳实践 | 用腾讯云AI意愿核身为电话合规保驾护航
C语言数组相关问题深度理解
服务器到服务器 (S2S) 事件 (Adjust)
Vscode编辑器ESP32头文件波浪线不跳转彻底解决
Scripy tutorial classic practice [New Concept English]
Move base parameter analysis and experience summary
Thread pool reject policy best practices
Redis只能做缓存?太out了!
clion mingw64中文乱码
DID登陆-MetaMask
Cinnamon 任务栏网速
toRaw和markRaw
MongoDB复制(副本集)总结