- 论坛徽章:
- 224
|
这是一段KMP字符串搜索代码,如果你懂代码,还是看的出我的代码功底的
/*
* code for KMP index_string
*/
//void main()
//{
// /////////////////0----c----b---
// char ms[1024] = "aaaaaaaaaaaaaaaaab";
// char kmps[64] = "aaaaab";
//
// int count = 0;
//
// short i = 0;
// short j = 0;
// short h[64] = {0,1,2,3,4,0};
//
// for(i=0; i<=strlen(ms)-strlen(kmps);printf("using i=%d\tj=%d\n",i,j))
// {
// i += j;
// j = h[j];
//
// while(ms[j+i] == kmps[j++])
// {
// if(count++>100)
// break;
//
// if(kmps[j] == 0)
// {
// printf("get index OK:\t%d\tand count=%d\n",i,count);
// goto exit;
// }
// }
// }
//
// printf("no match index, counter = %d,\tthanks for using.\n",count);
//
//exit:
// system("pause");
//
//
//}
/*
* to build kmp hash table, short named h[]
* step:
* 123-123-4==>000-333-0
* if(kmp == kmp[0]) h = i;
* else if(kmp[i-1] && kmp[i-h]) h=h[i-1];
* else h = 0;
*/
#define KMPLEN 64
#include<time.h>
void main()
{
char kmp[KMPLEN] = "aaaaab";
unsigned short int h[KMPLEN];
for(int i=0;i<KMPLEN;i++)
{
if(!i || kmp==kmp[0] ) h=i;
else if(kmp[i-1] && kmp[i-h]) h=h[i-1];
else h = 0;
}
} |
|