Theme Section

这是一道比较在一串字符串中是否存在形如EAEBE;

input :

5
xy
abc
aaa
aaaaba
aaxoaaaaa
output 

0
0
1
1
2
代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int Max=1e6+10;
int nex[Max];
char str[Max];
int len;
void Get();
int main()
{
    int n;
    scanf("%d",&n);
    while(n--)
    {
        scanf("%s",str+1);
        len=strlen(str+1);
        Get();
        int m=len;
        while(m)
        {
            if(nex[m]*3<=len)
                break;
            else
                m=nex[m];
        }
        if(m==0||len<3)//m==0:指在串中并没有找到中间字符串有“E”的情况,len<3:根本就不符合组成EAEBE
        {
            printf("0\n");
            continue ;
        }
        m=nex[m];//存在则输出对应的长度
        printf("%d\n",m);
    }
}
void Get()
{
    memset(nex,0,sizeof nex);
    int j;
    nex[1]=j=0;
    for(int i=2;i<=len;i++)
    {
        while(j&&str[i]!=str[j+1]) j=nex[j];
        if(str[j+1]==str[i]) j++;
        nex[i]=j; 
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值