当前位置:   article > 正文

剑指 Offer II 020. 回文子字符串的个数_回文子字符串个数

回文子字符串个数

题目链接

力扣

题目描述

给定一个字符串 s ,请计算这个字符串中有多少个回文子字符串。

具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被视作不同的子串。

示例 1:

输入:s = "abc"
输出:3
解释:三个回文子串: "a", "b", "c"

示例 2:

输入:s = "aaa"
输出:6
解释:6个回文子串: "a", "a", "a", "aa", "aa", "aaa"

提示:

  • 1 <= s.length <= 1000
  • s 由小写英文字母组成

解题思路

回文字符串中的字符数有奇数个和偶数个之分,对于字符串,每个单个字符都是回文子串。

维护两个指针left和right,分别有如下两种情况:

两指针指向同一个字符,分别向左向右移动,每移动一次比较是否相等,相等则+1

两指针指向相邻字符,分别向左向右移动,每移动一次比较是否相等,相等则+1

代码

Python

  1. def countSubstrings(s: str) -> int:
  2. def countPalindrome(s: str, left: int, right: int, n: int) -> int:
  3. res = 0
  4. while left >= 0 and right < n:
  5. if s[left] == s[right]:
  6. res += 1
  7. left -= 1
  8. right += 1
  9. else:
  10. break
  11. return res
  12. n = len(s)
  13. ans = 0
  14. for i in range(n):
  15. ans += countPalindrome(s, i, i, n) + countPalindrome(s, i, i + 1, n)
  16. return ans

Go

  1. func countSubstrings(s string) int {
  2. n := len(s)
  3. if n <= 1 {
  4. return n
  5. }
  6. ans := 0
  7. for i := 0; i < n; i++ {
  8. ans += isPalindrome(s, i, i, n) + isPalindrome(s, i, i+1, n)
  9. }
  10. return ans
  11. }
  12. func isPalindrome(s string, left int, right int, n int) int {
  13. res := 0
  14. for {
  15. if left < 0 || right > n-1 {
  16. break
  17. }
  18. if s[left] == s[right] {
  19. res++
  20. left--
  21. right++
  22. } else {
  23. break
  24. }
  25. }
  26. return res
  27. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/799585
推荐阅读
相关标签
  

闽ICP备14008679号