标题:KMP还是不行啊,哎
只看楼主
Lupkid
Rank: 1
等 级:新手上路
帖 子:42
专家分:0
注 册:2007-10-18
得分:0 

行了,谢谢你啊



#include "iostream"
#include "stdlib.h"
#include "stdio.h"
#define N 255
using namespace std;
typedef char SString[N+1];
SString T,S;
void GetNext(SString T,int *next) {
int i=1,j=0;
next[i]=0;
while(i<T[0]){
if(j==0 || T[i]==T[j]){
++i;++j;
next[i]=j;
}
else j=next[j];
}
for(i=1;i<=T[0];i++){
cout<<next[i];
cout<<" ";
}
cout<<endl;
}

int IndexKMP(SString S,SString T,int *next) {
int i=1,j=1;
while(i<=S[0] && j<=T[0])
if(j==0||S[i]==T[j]){
++i;++j;
}
else j=next[j];
if(j>T[0]) return (i-j+1);
else return 0;
}
void all(SString S){
int i=0,j=1;
while(S[j]!=NULL) {
j++; i++;
}
S[0]=i;
}
void main(){
int k,i;
int next[N];
cout<<"请输入字符串S:"<<endl;
gets(&S[1]);
all(S);
cout<<"请输入字符串T:"<<endl;
gets(&T[1]);
all(T);
cout<<"next值分别为:";
GetNext(T,next);
k=IndexKMP(S,T,next);
cout<<"在第";
cout<<k;
cout<<"个字符发现匹配"<<endl;
}

2007-10-20 09:12
tcxiang
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2007-10-14
得分:0 
用NEXTVAL吧..

2007-10-21 23:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-179177-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.127171 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved