【LeetCode】647. 回文子串

题目

给定一个字符串,你的任务是计算这个字符串中有多少个回文子串。

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

示例 1:

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

示例 2:

输入: "aaa"
输出: 6
说明: 6个回文子串: "a", "a", "a", "aa", "aa", "aaa".

解答

遍历字符串,对每一个字符的两边搜索,遇到前后相同字符则回文个数加1,否则停止搜索,注意分奇数和偶数子串。

class Solution {
public:
    int countSubstrings(string s) {
        int str_len = s.length();
        int count = 0;
        for (int i = 0; i < str_len; i++) {
            int j = 0;
            while (i-j >= 0 && i+j < str_len) {
                if (s[i+j] == s[i-j]) 
                    count++;
                else
                    break;
                j++;
            }

            j = 1;
            while (i-j+1 >= 0 && i+j < str_len) {
                if (s[i-j+1] == s[i+j])
                    count++;
                else
                    break;
                j++;
            }
        }
        return count;
    }
};

你可能感兴趣的:(LeetCode)