Leetcode:647. Palindromic Substrings

LeetCode 647题解
本文提供了一种解决LeetCode 647题“回文子串”问题的有效方法,采用中心扩展算法,通过两次遍历字符串来找出所有回文子串,并给出详细实现代码。

Leetcode:647. Palindromic Substrings

参考第5题http://www.cnblogs.com/Michael2397/p/8036163.html,一下子就ac掉了,这里有个解释https://discuss.leetcode.com/topic/96884/very-simple-java-solution-with-detail-explanation

不过和第五题思想一样啦

public int countSubstrings(String s) {
        int count = 0;
        for (int i = 0; i <2*s.length()-1; i++) {
            int left = i/2;
            int right = i/2;
            if(i%2==1){
                right++;
            }
            count+=getSub(s, left, right);
        }
        return count;
    }
    public int getSub(String s,int left,int right){
        int count = 0;
        while(left>=0&&right<=s.length()-1&&s.charAt(left)==s.charAt(right)){
            left--;
            right++;
            count++;
        }
        return count;
    }

 

posted on 2017-12-19 09:24 Michael2397 阅读(...) 评论(...) 编辑 收藏

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值