算法刷题打卡第67天:句子相似性 III

句子相似性 III

难度:中等

一个句子是由一些单词与它们之间的单个空格组成,且句子的开头和结尾没有多余空格。比方说,"Hello World""HELLO""hello world hello world" 都是句子。每个单词都 只 包含大写和小写英文字母。

如果两个句子 sentence1sentence2 ,可以通过往其中一个句子插入一个任意的句子(可以是空句子)而得到另一个句子,那么我们称这两个句子是 相似的 。比方说,sentence1 = "Hello my name is Jane"sentence2 = "Hello Jane" ,我们可以往 sentence2"Hello""Jane" 之间插入 "my name is" 得到 sentence1

给你两个句子 sentence1sentence2 ,如果 sentence1sentence2 是相似的,请你返回 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

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

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

复杂度分析:

  • 时间复杂度: O ( m + n ) O(m+n) O(m+n),其中 m m m sentence 1 \textit{sentence}_1 sentence1 的长度, n n n sentence 2 \textit{sentence}_2 sentence2 的长度。字符串分割和双指针判断操作都需要遍历 O ( m + n ) O(m+n) O(m+n) 个字符。
  • 空间复杂度: O ( m + n ) O(m+n) O(m+n)。字符串分割需要 O ( m + n ) O(m+n) O(m+n) 的空间,双指针消耗 O ( 1 ) O(1) O(1) 空间。
class Solution:
    def areSentencesSimilar(self, sentence1: str, sentence2: str) -> bool:
        sentence1 = sentence1.split(" ")
        sentence2 = sentence2.split(" ")
        sentence1_len, sentence2_len = len(sentence1), len(sentence2)
        i, j = 0, -1
        while i < sentence1_len and i < sentence2_len and sentence1[i] == sentence2[i]:
            i += 1
        while -j <= sentence1_len and -j <= sentence2_len and sentence1[j] == sentence2[j]:
            j -= 1
        return i - j - 1 >= min(sentence1_len, sentence2_len)

字符串按空格分割 + 双端队列

思路:
将分割好的字符串添加到队列中,使用双端队列这种数据结构进行判断两个队列的前后是否有相同元素,并进行删减,最终判断是否有队列为空。

复杂度分析:

  • 时间复杂度: O ( m + n ) O(m+n) O(m+n),其中 m m m sentence 1 \textit{sentence}_1 sentence1 的长度, n n n sentence 2 \textit{sentence}_2 sentence2 的长度。字符串分割和双指针判断操作都需要遍历 O ( m + n ) O(m+n) O(m+n) 个字符。
  • 空间复杂度: O ( m + n ) O(m+n) O(m+n)。字符串分割需要 O ( m + n ) O(m+n) O(m+n) 的空间。
class Solution:
    def areSentencesSimilar(self, sentence1: str, sentence2: str) -> bool:
        sentence1 = sentence1.split(" ")
        sentence2 = sentence2.split(" ")
        while sentence1 and sentence2 and sentence1[0] == sentence2[0]:
            sentence1.pop(0)
            sentence2.pop(0)
        while sentence1 and sentence2 and sentence1[-1] == sentence2[-1]:
            sentence1.pop()
            sentence2.pop()
        return not (sentence1 and sentence2)

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/sentence-similarity-iii

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

夏秃然

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

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

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

打赏作者

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

抵扣说明:

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

余额充值