KMP

/*
KMP算法
时间复杂度:O(主串长度加上子串长度)
空间复杂度:O(主串长度加上子串长度再加上next数组的长度(与子串长度相同))
*/
#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

void gets_next(string T, int len, int *next)
{
    int i = 1;
    int j = 0;
    next[1] = 0;
    while(i < len)
    {
        if(j==0 || T[i-1] == T[j-1])
        {
            ++i;
            ++j;
            if(T[i-1]!=T[j-1])
                next[i] = j;
            else
                next[i] = next[j];
        }
        else
            j = next[j];
    }
    cout << "next数组如下:" << endl;
    for(int t = 1; t <= len; t++)
        cout << next[t] << " ";
    cout << endl;
}

int KMP(string S, int len1, string T, int len2, int pos)//pos为起始位
{
    int i = pos;
    int j = 1;
    int next[len2+1];
    gets_next(T, len2, next);
    while(i <= len1 && j <= len2)
    {
        if(j==0 || S[i-1] == T[j-1])
        {
            ++i;
            ++j;
            if(j > len2)//找到匹配
            return i - len2;//返回首位下标
        }
        else
        {
            j = next[j];
        }
    }
    return 0;
}

int main()
{
    string str = "aaaaaaab";
    string str1 = "aaaaabbaaaaaaabaa";
    int num = KMP(str1, str1.size(), str, str.size(), 1);
    if(num!=0)
        cout << "子串在主串中的起始位置为 " << num;
    else
        cout << "主串不存在与子串相匹配的串";
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值