KMP - 简单应用

#include<stdio.h>
#include<string.h>
char s1[1000005],s2[1000005];
int next[1000005];
void get_next(char s[1000005])
{
    int i  = 0;
    int len = strlen(s);
    next[0] = -1;
    int j = -1;
    while(i < len-1)
    {
        if( j == -1 || s[i] == s[j])
        {
            ++i;
            ++j;
            if( s[i] != s[j])
                next[i] = j;
            else
                next[i] = next[j];
        }
        else
            j = next[j];
    }
}

int kmp(char *s,char *p)
{
    int len1 = strlen(s);
    int len2 = strlen(p);
    int i = 0;
    int j  = 0;
    while( i < len1 && j < len2)
    {
        if( j == -1 || s[i] == p[j])
        {
            ++i;
            ++j;
        }
        else
            j = next[j];
    }
    if( j >= len2)
        return i-len2+1;
    else
        return -1;
}
int main()
{

        while(scanf("%s",s1)!=EOF)
        {
        scanf("%s",s2);
        get_next(s2);
        int wz = kmp(s1,s2);
        printf("%d\n",wz);
        }
        return 0;
}

2.

#include <stdio.h>
#include <string.h>
char s[1000001],p[1000001];
int next[1000001];
void getnext(char *p,int *next)
{
    int j,k;
    next[0] = -1;
    j = 0;
    k = -1;
    while(j<strlen(p) - 1)
    {
        if(k == -1 || p[j] == p[k])  // 匹配情况下,p[j] == p[k]
        {
            j++;
            k++;
            next[j] = k;
        }                            // p[j] !=p[k];
        else
        k = next[k];
    }
}
int KMPmatch(char *s,char *p)
{
    int i,j;
    i = 0;
    j = 0;
    getnext(p,next);
    while(i<strlen(s))
    {
        if(j == -1 || s[i] == p[j])
        {
            i++;
            j++;
        }
        else
        j = next[j];
        if(j == strlen(p))
        return i - strlen(p)+1;
    }
    return -1;
}

int main()
{
    while(scanf("%s%s",s,p)!=EOF)
    {
        printf("%d\n",KMPmatch(s,p));
    }
    return 0;
}

  

KMP - 简单应用

时间: 2024-11-09 18:39:14

KMP - 简单应用的相关文章

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

数据结构实验之串一:KMP简单应用 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Problem Description 给定两个字符串string1和string2,判断string2是否为string1的子串. Input 输入包含多组数据,每组测试数据包含两行,第一行代表string1(长度小于1000000),第二行代表string2(长度小于1000000),string1和string2中保证不出现空格. Outp

SDUT-2772_数据结构实验之串一:KMP简单应用

数据结构实验之串一:KMP简单应用 Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 给定两个字符串string1和string2,判断string2是否为string1的子串. Input 输入包含多组数据,每组测试数据包含两行,第一行代表string1(长度小于1000000),第二行代表string2(长度小于1000000),string1和string2中保证不出现空格. Output 对于每组输入数据,若s

KMP简单应用

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

HDU 1358 Period(kmp简单解决)

Period Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3196    Accepted Submission(s): 1603 Problem Description For each prefix of a given string S with N characters (each character has an ASCII

SDUTOJ 2772 KMP简单应用

#include<iostream> #include<string.h> #include<stdio.h> #define N 10000001 using namespace std; char s[N],s1[N]; int next[N]; void getnext(char s1[]) { int j=-1,i=0,len; next[0]=-1; len=strlen(s1); while(i<len) { if(j==-1||s1[i]==s1[j

KMP简单题

原题http://acm.hdu.edu.cn/showproblem.php?pid=1711 Number Sequence Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11463    Accepted Submission(s): 5225 Problem Description Given two sequences o

poj2406 KMP

kmp简单题 找循环节.由于KMP的next[]数组,所以可以考虑最后一组的情况,及next[n]的值:n-next[n]的值表示一个循环节. 如果n%(n-next[n])!=0表明该循环不成立.不然就是直接得到. #include<stdio.h> #include<string.h> #define maxn 1000010 int next[maxn]; char s[maxn]; void getnext() { int j,k,len=strlen(s); j=0; k

noi往届题目泛做

noi2015 Day1 t1 程序自动分析  离散化+并查集 t2 软件包管理器  裸树链剖分 t3 寿司晚宴  状压dp Day2 t1 荷马史诗 哈夫曼多叉树 t2 品酒大会 后缀数组按照height排序+并查集 t3 小园丁与老司机 noi2014 Day1 t1 起床困难综合症  按位dp,贪心 t2 魔法森林 link-cut-tree维护MST t3 题答 Day2 t1 动物园 KMP简单题 t2 随机数生成器  贪心,每一行的区间是连续不跨越的,卡内存 t3 购票 树链剖分+线

BM算法详解(转)

1977 年,Robert S.Boyer和J Strother Moore提出了另一种在O(n)时间复杂度内,完成字符串匹配的算法,其在绝大多数场合的性能表现,比KMP算法还要出色,下面我们就来详细了解一下这 一出色的单模式匹配算法,在此之前推荐读者读一下我的另一篇文章<KMP算法详解>,对于透彻理解BM算法大有裨益. 在讲解Boyer-Moore算法之前,我们还是要提一提KMP算法的老例子,当模式串与目标串匹配至如下位置时:  1  2  3  4  5  6  7  8  9 10 11