在java中查找两个句子之间的不同单词
在java中找出两个句子之间所有唯一单词并存储它们的有效方法是什么?应该使用什么数据结构来存储单词?
What is an efficient way to find out all the unique words between 2 sentences in java and store them? What data structure should be used to store the words?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将第一个句子中的单词存储在哈希集中,然后迭代第二个句子中的单词以查看其是否已存在于哈希集中
Store words from the first sentence in hashset and then iterate over ords in second sentence to see if its already there in hashset
将一个句子中的所有单词放入一组,然后遍历第二个句子的单词。如果该单词存在于集合中,则将其从集合中取出,否则将其放入集合中。
Put all words from one sentence in a set, then pass through words of the second sentence. If the word exists in a set, take it out of the set, otherwise put it into the set.
实现这一目标的一个简单方法是:
希望这有帮助
A simple way of achieving this is:
Hope this helps