加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
KMP.c 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
yingquelou 提交于 2021-08-04 18:12 . 0804
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
return 0;
}
int kmp(char t[], char s[], int next[])
{
int i = 0, j = 0,
Lt = strlen(t),
Ls = strlen(s);
if (Lt > Ls)
return -1;
while (i <= Ls && j <= Lt)
{
if (j == 0 || t[i] == s[j])
{
++i;
if (j > 0)
++j;
}
else
j = next[j];
}
if (j > Lt)
return i - j - 1;
return -1;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化