• HDU 2087 KMP


    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <cmath>
    #include <cctype>
    #include <vector>
    #include <stack>
    #include <queue>
    #include <map>
    #include <algorithm>
    #include <iostream>
    #include <string>
    #include <set>
    #define X first
    #define Y second
    #define sqr(x) (x)*(x)
    #pragma comment(linker,"/STACK:102400000,102400000")
    using namespace std;
    const double PI = acos(-1.0);
    map<int, int>::iterator it;
    typedef long long LL ;
    template<typename T> void checkmin(T &x, T y) {x = min(x, y);}
    template<typename T> void checkmax(T &x, T y) {x = max(x, y);}
    
    const int N = 1005;
    int p[N];
    int KMP(char *a, int n, char *b, int m) {
        p[0] = -1;
        int i, j = -1;
        for(i = 1; i <= m; i++) {
            while((j > -1) && (b[j+1] != b[i]))
                j = p[j];
            if(b[j+1] == b[i]) j++;
            p[i] = j;
        }
        int cnt=0;
        //for(i=0;i<m;i++) printf("%d   ",p[i]); printf("
    ");
        j = -1;
        for(i = 0; i < n; i++) {
            while((j > -1) && (b[j+1] != a[i])) j = p[j];
            if(b[j+1] == a[i]) {
                j++;
            }
            if(j == m - 1) {
                ++cnt;
                j=0;
                //printf("i=%d
    ",i);
                //return i-m+1;
                j = p[j];
            }
        }
        return cnt;
    }
    char s[N],t[N];
    int main() {
        while(~scanf("%s",s),s[0]!='#')
        {
            scanf("%s",t);
            int n = strlen(s), m = strlen(t);
            int res = KMP(s,n,t,m);
            printf("%d
    ",res);
        }
    }
  • 相关阅读:
    设计模式-状态模式
    设计模式-策略模式
    Spring MVC 梳理
    Spring MVC 梳理
    设计模式-总结
    Spring boot 梳理
    Spring boot 梳理
    [DP题]最长上升子序列
    NOIP2013 Day1
    20171025日程
  • 原文地址:https://www.cnblogs.com/cxw199204/p/3348501.html
Copyright © 2020-2023  润新知