首页 > 代码库 > KMP算法
KMP算法
/* * main.cpp * * Created on: 2016年8月29日 * Author: godsome */#include <iostream>#include <cstdio>#include <cstring>using namespace std;int next[100];int Index_KMP(char s[], char t[]){ int len_s = strlen(s), len_t = strlen(t); int i = 0, j = 0; while(i < len_s && j < len_t){ if(s[i] == t[j]){ i++; j++; } else if(j == 0) i++; else j = next[j-1] + 1; } if(j == len_t) return i - len_t; else return -1;}void get_next(char str[], int next[]){ int len = strlen(str); int i, j; next[0] = -1; for(i = 1; i < len; i++){ j = next[i-1]; while(str[j+1]!=str[i] && j>=0) j = next[j]; if(str[i] == str[j+1]) next[i] = j + 1; else next[i] = -1; }}int main(){ char *p = "ababcabcacbab"; char *t = "abcac"; get_next(t, next); int pos = Index_KMP(p, t); printf("%d\n", pos); return 0;}
KMP算法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。