字符串647. 回文子串

Posted ocpc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串647. 回文子串相关的知识,希望对你有一定的参考价值。

题目:

技术图片

 

 

 

解答:

技术图片

 

 

 1 class Solution {
 2 public:
 3     int countSubstrings(string s) 
 4     {
 5         // 中心扩展法
 6         int ans = 0;
 7         for (int center = 0; center < 2 * s.length() - 1; center++) 
 8         {
 9             // left和right指针和中心点的关系是?
10             // 首先是left,有一个很明显的2倍关系的存在,其次是right,可能和left指向同一个(偶数时),也可能往后移动一个(奇数)
11             // 大致的关系出来了,可以选择带两个特殊例子进去看看是否满足。
12             int left = center / 2;
13             int right = left + center % 2;
14 
15             while (left >= 0 && right < s.length() && s[left] == s[right]) 
16             {
17                 ans++;
18                 left--;
19                 right++;
20             }
21         }
22         return ans;
23     }
24 };

 

以上是关于字符串647. 回文子串的主要内容,如果未能解决你的问题,请参考以下文章

647. 回文子串

题目地址(647. 回文子串)

leetcode647 回文子串(Medium)

[LeetCode]647. 回文子串(DP)

Leetcode之动态规划(DP)专题-647. 回文子串(Palindromic Substrings)

[LeetCode] 647. 回文子串 ☆☆☆(最长子串动态规划中心扩展算法)