数据结构实验之串一:KMP简单应用

Problem Description
给定两个字符串string1和string2,判断string2是否为string1的子串。
Input
输入包含多组数据,每组测试数据包含两行,第一行代表string1(长度小于1000000),第二行代表string2(长度小于1000000),string1和string2中保证不出现空格。
Output
对于每组输入数据,若string2是string1的子串,则输出string2在string1中的位置,若不是,输出-1。
Sample Input
abc
a
123456
45
abc
ddd
Sample Output
1
4
-1

代码:

#include 
#include 
#include 
int next[1000010];
char t[1000010],p[1000010];
void get_next(char p[])
{
    int i=0,j=-1;
     next[0]= -1;
    int len=strlen(p);
    while(i=len2)
    {
        return i-len2+1;
    }
    else return -1;
}
int main()
{
    while(~scanf("%s",t))
    {
        scanf("%s",p);
        printf("%d\n",KMP(t,p));
    }
    return 0;

}

你可能感兴趣的:(数据结构实验之串一:KMP简单应用)