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

提示:
1 <= sentence1.length, sentence2.length <= 100
sentence1 和 sentence2 都只包含大小写英文字母和空格。
sentence1 和 sentence2 中的单词都只由单个空格隔开。

方法1:
主要思路:解题链接汇总
(1)模拟;

class Solution {
public:
    void get_word(string&str,vector<string>&words){//将字符串中的各个单词分割出来存储
        string word;
        for(char&ch:str){
            if(ch==' '){
                words.push_back(word);
                word="";
            }
            else{
                word+=ch;
            }
        }
        words.push_back(word);
    }
    bool areSentencesSimilar(string sentence1, string sentence2) {
        vector<string>words_1;
        vector<string>words_2;
        //获得原谅两个句子的单词组成
        get_word(sentence1,words_1);
        get_word(sentence2,words_2);
        if(words_1.size()>words_2.size()){//确定需要插入的句子
            swap(words_1,words_2);
        }
        if(words_1.size()==0){
            return true;
        }
        if(words_1[0]!=words_2[0]&&words_1.back()!=words_2.back()){//说明一定不符合要求
            return false;
        }
        //从头开始
        int index1=0;
        while(index1<words_1.size()&&words_1[index1]==words_2[index1]){
            ++index1;
        }
        //从末尾开始
        int index2=words_1.size()-1,tmp=words_2.size()-1;
        while(index2>=0&&words_1[index2]==words_2[tmp]){
            --index2;
            --tmp;
        }
        //遍历完短的单词词组
        return index2<index1;
    }
};

//go语言实现

func getWord(str *string)[]string{
    words := []string{}
    word :=""
    for _,ch:=range (*str) {
        if ch==' ' {
            words=append(words,word)
            word=""
        }else{
            word+=string(ch)
        }
    }
    return append(words,word)
}
func areSentencesSimilar(sentence1 string, sentence2 string) bool {
    words_1:=getWord(&sentence1)
    words_2:=getWord(&sentence2)
    if len(words_1)>len(words_2) {
        words_1,words_2=words_2,words_1
    }
    if len(words_1)==0 {
        return true
    }
    if words_1[0]!=words_2[0]&&words_1[len(words_1)-1]!=words_2[len(words_2)-1]{
        return false
    }
    index1:=0
    for index1<len(words_1)&&words_1[index1]==words_2[index1] {
        index1++
    }
    index2:=len(words_1)-1
    tmp :=len(words_2)-1
    for index2>=0&&words_1[index2]==words_2[tmp] {
        index2--
        tmp--
    }
    return index1>index2
}

你可能感兴趣的:(LeetCode)