1813. 句子相似性 III

1813.句子相似度III

一个句子是由一些单词与它们之间的单个空格组成,且句子的开头和结尾没有多余空格。比方说,“Hello World” ,“HELLO” ,“hello world hello world” 都是句子。每个单词都 包含大写和小写英文字母。
如果两个句子 sentence1 和 sentence2 ,可以通过往其中一个句子插入一个任意的句子(可以是空句子)而得到另一个句子,那么我们称这两个句子是相似的。比方说,sentence1 = “Hello my name is Jane” 且 sentence2 = “Hello Jane” ,我们可以往 sentence2 中 “Hello” 和 “Jane” 之间插入 “my name is” 得到 sentence1 。
给你两个句子 sentence1 和 sentence2 ,如果 sentence1 和 sentence2 是相似的,请你返回 true ,否则返回 false 。

示例 1

输入:sentence1 = “My name is Haley”, sentence2 = “My Haley”
输出:true
解释:可以往 sentence2 中 “My” 和 “Haley” 之间插入 “name is” ,得到 sentence1 。

示例 2

输入:sentence1 = “of”, sentence2 = “A lot of words”
输出:false
解释:没法往这两个句子中的一个句子只插入一个句子就得到另一个句子。

示例 3

输入:sentence1 = “Eating right now”, sentence2 = “Eating”
输出:true
解释:可以往 sentence2 的结尾插入 “right now” 得到 sentence1 。

示例4

输入:sentence1 = “Luky”, sentence2 = “Lucccky”
输出:false

解法:

方法:字符串按空格分割 + 双指针

根据题意,两个句子 sentence1和 sentence2​ ,如果是相似的,那么这两个句子按空格分割得到的字符串数组words1和 words2,一定能通过往其中一个字符串数组中插入某个字符串数组(可以为空),得到另一个字符串数组。这个验证可以通过双指针完成。i表示两个字符串数组从左开始,最多有 i个字符串相同。j表示剩下的字符串数组从右开始,最多有 j个字符串相同。如果 i+j正好是某个字符串数组的长度,那么原字符串就是相似的。

public boolean areSentencesSimilar(String sentence1, String sentence2) {
        String words1[]=sentence1.split(" ");
        String words2[]=sentence2.split(" ");
        int i=0,j=0;
        while(i<words1.length&&i<words2.length&&words1[i].equals(words2[i])){
            i++;
        }
        while(j<words1.length-i&&j<words2.length-i&&words1[words1.length-j-1].equals(words2[words2.length-j-1])){
            j++;
        }
        return i+j==Math.min(words1.length,words2.length);
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Annimi@

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值