LeetCode647-20.8.19-回文字串

题目链接:LeetCode647
过程:一开始暴力,时间老长,然后看题解,知道了
方法1:枚举回文串中心
方法2: Manacher(马拉车)算法
思路:暴力枚举子串o(n3)、枚举中心o(n2)、Manacher o(n);
代码

class Solution {
    public int countSubstrings(String s) {
        StringBuilder sb=new StringBuilder();
        int n=s.length();
        sb.append("$#");
        for(int i=0;i<n;i++){
            sb.append(s.charAt(i));
            sb.append('#');
        }
        n=sb.length();
        sb.append('!');
        int[] f=new int[n];
        int imax=0,rmax=0,ans=0;
        for(int i=1;i<n;i++){
            f[i]=i<=rmax?Math.min(f[2*imax-i],rmax-i+1):1;
            while(sb.charAt(i-f[i])==sb.charAt(i+f[i]))f[i]++;
            if(i+f[i]-1>rmax){
                imax=i;
                rmax=i+f[i]-1;
            }
            ans+=f[i]/2;
        }
        return ans;
    }
}

你可能感兴趣的:(leetcode每日一题)