数据结构实验之串二:字符串匹配

本文介绍了一种高效的字符串匹配算法——KMP算法,并通过一个具体的编程实现案例,详细讲解了如何判断一个字符串是否为另一个字符串的子串。文章通过具体代码展示了KMP算法的工作原理,包括next数组的构建和匹配过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
  给定两个字符串string1和string2,判断string2是否为string1的子串。
 
Input
 输入包含多组数据,每组测试数据包含两行,第一行代表string1,第二行代表string2,string1和string2中保证不出现空格。(string1和string2大小不超过100字符)
 
Output
 对于每组输入数据,若string2是string1的子串,则输出"YES",否则输出"NO"。
 
Example Input
abc
a
123456
45
abc
ddd
Example Output
YES
YES
NO
Author
 赵利强
#include <bits/stdc++.h>
using namespace std;

char st1[1000001],st2[1000001];
int next[1000001];

void get_next()
{
    int i=0,j=-1,k;
    next[0]=-1;

    while(st2[i]!='\0')
    {
        if(j==-1||st2[i]==st2[j])
        {
            i++;
            j++;
            next[i]=j;
        }
        else
            j=next[j];
    }
}

void kmp()
{
    int i=0,j=0,k;
    get_next();
    int len1=strlen(st1);
    int len2=strlen(st2);

    while(i<len1&&j<len2)
    {
        if(j==-1||st1[i]==st2[j])
        {
            i++;
            j++;
        }
        else
            j=next[j];
    }
    if(j>=len2)
    {
        cout<<"YES"<<endl;
    }
    else
        cout<<"NO"<<endl;
}

int main()
{
    while(cin>>st1>>st2)
    {
        kmp();
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值