7-1 串的模式匹配 (25 分)-数据结构第4章

这个题目主要考的是KMP算法,我感觉KMP算法理解起来有点小困难,但是代码超级短,时间复杂度为(n+m),但是我发现字符串hash更好用一些,而且很容易理解

这个是我对字符串hash的介绍,可能不是很全,但是希望大家可以理解我想表达的意思:

这个文章中有我对字符串hash的模板https://blog.csdn.net/weixin_44235647/article/details/90181091

下面是这个题通过的代码,用了几十毫秒,速度还是相当快的

#include 
#include 
using namespace std;

const int N = 1000010 ,P = 13331;

typedef unsigned long long ull;

int n, m;
char str[N];
ull h[N],p[N];

char str1[N];
ull h1[N],p1[N];
ull get(int l,int r)
{
    return h[r] - h[l-1] * p[r-l+1];
}

int main()
{
    // cin>>str+1;
    scanf("%s",str+1);
    n = strlen(str+1);
    
    p[0] = 1;
    
    for(int i=1;i<=n;i++)
    {
        h[i] = h[i-1] * P + str[i];
        p[i] = p[i-1] * P;
    }
    int t;
    scanf("%d",&t);
    while(t--)
    {
        // cin >> str1+1;
        scanf("%s",str1+1);
        m = strlen(str1+1);
        
        p1[0] = 1;
        
        for(int i = 1;i<=m;i++)
        {
            h1[i] = h1[i-1]*P + str1[i];
            // cout << "h1[i] = "<< h1[i] << endl;
            
            p1[i] = p1[i-1]*P;
        }
        
        ull t1 = h1[m];
        bool tf = true;
        
        for(int i = m;i<=n;i++)
        {
            
            if(get(i-m+1,i)==t1)
            {
                // cout<< str + i-m+1<< endl;
                printf("%s\n",str+i-m+1);
                tf = false;
                break;
            }
        }
        
        if(tf)
        printf("Not Found\n");
        
    }
    return 0;
}

KMP算法的模板和题解以后再补上,如果大家直接调用库函数好像也能通过这个题目,但是这并不是这个题考察的意图

你可能感兴趣的:(数据结构PTA)