再谈KMP

时间:2021-08-27 23:04:26

昨天讲解了字典树和AC自动机后感觉整个人都蒙掉了。还好就是自己今天在网上看见一篇对KMP讲解非常详细的帖子,果断收藏。(点击这里查看)

然后代码的实现也就简单分析一些了,具体的知识点大家直接自己链接过去吧。(代码参考链接)

#include <stdio.h>
#include <string.h>
#include <malloc.h> void get_next(int next[], char source[], int n);//获取部分匹配字符数组
int Index_KMP(char* s_string, char* t_string, int pos);//返回源字符串s_string中pos开始 与t_string匹配的第一个字符串首字母下标,无匹配返回0 int main()
{
char *source_str = "BBC ABCDAB ABCDABCDABDE";
char *t_str = "ABCDAB";//模式串 printf("%d\n", Index_KMP(source_str, t_str, )); return ;
} void get_next(int next[], char source[], int n)
{
int i = ;
next[] = ;
for(i = ; i < n; i++)                //最开始的next数组是被全部的初始化为0的,然后在后面处理的时候就可以方便的将next数组搞定了
{
if(source[i] == source[next[i-]])
next[i] = next[i-] + ;
else
next[i] = ;
}
} int Index_KMP(char* s_string, char* t_string, int pos)
{
int i = pos;//指向 s_string的起始下标
int j = ;//指向 t_string的起始下标
int t_len = strlen(t_string);
int s_len = strlen(s_string);
int* t_next = (int*)malloc(sizeof(int)*t_len);
int m; get_next(t_next, t_string, t_len);//获取t_string的部分匹配字符数组
for(m = ; m < t_len; m++)
printf("%d ",t_next[m]);
printf("\n"); while( (i<s_len)&&(j<t_len) )
{
if(s_string[i] == t_string[j])
{
i++;
j++;
}
else
{
if(j == )
{
i++; //源字符串下表前移动
}
else
{
m = j - t_next[j-];//需回溯的位数
j = j - m;//设置下一次的起始坐标
}
}
}
free(t_next); if(j==t_len)
return i-t_len;
else
return ;
}