Featured image of post 2490. 回环句

2490. 回环句

题目描述

句子 是由单个空格分隔的一组单词,且不含前导或尾随空格。

  • 例如,"Hello World""HELLO""hello world hello world" 都是符合要求的句子。

单词 由大写和小写英文字母组成。且大写和小写字母会视作不同字符。

如果句子满足下述全部条件,则认为它是一个 回环句

  • 单词的最后一个字符和下一个单词的第一个字符相等。
  • 最后一个单词的最后一个字符和第一个单词的第一个字符相等。

例如,"leetcode exercises sound delightful""eetcode""leetcode eats soul" 都是回环句。然而,"Leetcode is cool""happy Leetcode""Leetcode""I like Leetcode" 是回环句。

给你一个字符串 sentence ,请你判断它是不是一个回环句。如果是,返回 true ;否则,返回 false

示例 1:

  • 输入:sentence = “leetcode exercises sound delightful”
  • 输出:true
  • 解释:句子中的单词是 [“leetcode”, “exercises”, “sound”, “delightful”] 。
    • leetcode 的最后一个字符和 exercises 的第一个字符相等。
    • exercises 的最后一个字符和 sound 的第一个字符相等。
    • sound 的最后一个字符和 delightful 的第一个字符相等。
    • delightful 的最后一个字符和 leetcode 的第一个字符相等。这个句子是回环句。

示例 2:

  • 输入:sentence = “eetcode”
  • 输出:true
  • 解释:句子中的单词是 [“eetcode”] 。
    • eetcode 的最后一个字符和 eetcode 的第一个字符相等。这个句子是回环句。

示例 3:

  • 输入:sentence = “Leetcode is cool”
  • 输出:false
  • 解释:句子中的单词是 [“Leetcode”, “is”, “cool”] 。
  • Leetcode 的最后一个字符和 is 的第一个字符不相等。这个句子不是回环句。

提示:

  • 1 <= sentence.length <= 500
  • sentence 仅由大小写英文字母和空格组成
  • sentence 中的单词由单个空格进行分隔
  • 不含任何前导或尾随空格

解法一:一次遍历

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
func isCircularSentence(sentence string) bool {
    sentence = sentence + " " + string(sentence[0])
    n := len(sentence)
    i, j := 0, 1
    for sentence[j] != ' ' {
        i++
        j++
    }
    for j < n {
        j++
        if sentence[i] != sentence[j] {
            return false
        }
        i++
        for j < n && sentence[j] != ' ' {
            i++
            j++
        }
    }
    return true
}

官方题解如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
func isCircularSentence(sentence string) bool {
    n := len(sentence)
    if sentence[n-1] != sentence[0] {
        return false
    }
    for i := 0; i < n; i++ {
        if sentence[i] == ' ' && sentence[i + 1] != sentence[i - 1] {
            return false
        }
    }
    return true
}
Licensed under CC BY-NC-SA 4.0
最后更新于 2023/06/30 09:50:15
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计