计算回文子串的数量

时间:2015-11-20 18:51:44

标签: java algorithm palindrome

我今天在hackerearth.com上解决了一个问题。 https://www.hackerearth.com/problem/algorithm/subpalindrome-4/description/

问题:
对于作为输入给出的每个字符串,您需要告诉我们它是回文序列的子序列的数量(不一定是不同的)。请注意,空字符串不是回文 样本输入
 1
AAB
样品输出
 4
说明: “aab”的回文子序列是:“a”,“a”,“b”,“aa”,方法返回4.

我必须计算作为回文的子字符串(不是不同的)的总数。我必须通过两个测试用例,其中一个成功,并且样本输入也成功运行。第二个测试用例失败,匹配率为35.29%。

以下是我在不使用StringBuffer类的情况下用Java编写的代码:

import java.util.*;

class TestClass {
    int palin(String a)
    {
        int l=a.length();
        for(int i=0;i<l/2;i++)
        {
            if(a.charAt(i)!=a.charAt(l-1-i))
            return -1;
        }

        return 1;

    }
    public static void main(String args[] ) throws Exception {

        TestClass ob=new TestClass();

        Scanner in=new Scanner(System.in);
        int N = in.nextInt();
        in.nextLine(); /*I have included this because I have seen that when I
        input the string, the number is the value of N appears at its start*/
        for (int ii = 0; ii < N; ii++)
        {
            String aa=in.nextLine();
            String a=aa.toLowerCase();
            int l=a.length();
            int n=l;
            for(int i=0;i<l;i++)
            {
                for(int j=i+2;j<=l;j++)
                {
                    if(ob.palin(a.substring(i,j))>0)
                    n++;
                }
            }
            System.out.println(n);
        }
    } 

我在逻辑上出错了吗?或者我错过了什么?

1 个答案:

答案 0 :(得分:3)

字符串的子序列与子字符串不同。例如,考虑字符串“ABC”:

子串:“”,“A”,“B”,“C”,“AB”,“BC”,“ABC”

子序列:所有子串,加上“AC”

有关子序列的更多信息:https://en.wikipedia.org/wiki/Subsequence