码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 647. 回文子串(Palindromic Substrings)

时间:2019-05-26 17:48:01      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:题目   相同   for   return   substr   参考资料   length   com   uri   

647. 回文子串
647. Palindromic Substrings

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

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

LeetCode647. Palindromic Substrings中等

示例 1:

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

示例 2:

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

注意:

  • 输入的字符串长度不会超过 1000。

Java 实现

class Solution {
    public int countSubstrings(String s) {
        int count = 0;
        for (int i = 0; i < s.length(); i++) {
            count += extractPalindrome(s, i, i);
            count += extractPalindrome(s, i, i + 1);
        }
        return count;
    }

    public int extractPalindrome(String s, int left, int right) {
        int count = 0;
        while (left >= 0 && right < s.length() && s.charAt(left) == s.charAt(right)) {
            count++;
            left--;
            right++;
        }
        return count;
    }
}
技术图片

相似题目

参考资料

LeetCode 647. 回文子串(Palindromic Substrings)

标签:题目   相同   for   return   substr   参考资料   length   com   uri   

原文地址:https://www.cnblogs.com/hglibin/p/10926473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!