| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 400 人关注过本帖
标题:[求助]C程序算法
只看楼主 加入收藏
ditouwa960
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2007-4-1
收藏
 问题点数:0 回复次数:0 
[求助]C程序算法
各位大侠看看这个程序哪里毛病没有,调试不好,不知道哪里要修改
#i nclude <stdio.h>
#i nclude <stdlib.h>
#i nclude <string.h>
#i nclude <time.h>
//获得prefix数组
int* GetPrefixValue(char* strPattern, int iPatternLen)
{
int i, j; /* i runs through the string, j counts the hits*/
int* prefix = (int*)malloc(iPatternLen*sizeof(int));

i = 1; j = 0;
prefix[0] = 0;

while(i<iPatternLen)
{
if(strPattern == strPattern[j])
{
prefix = ++j;
}
else
{
j = 0;
prefix = j;
}

i++;
}

return prefix;
}
//返回target串在pattern串中第一次匹配的index
int KMPStringMatch(char* strPattern, int iPatternLen, char* strTarget, int iTargetLen, int* prefix)
{
int i = 0;
int j = 0;

while(i<iPatternLen && j<iTargetLen)
{
if(j==0 || strPattern==strTarget[j])
{
i++; j++;
}
else
{
j = prefix[j];
}
}

free(prefix);

if(j==iTargetLen)
{
return i-j;
}
else
{
return -1;
}
}
int KMP(char* strPattern, char* strTarget)
{
int* prefix = GetPrefixValue(strPattern, strlen(strPattern));
int index = KMPStringMatch(strPattern, strlen(strPattern), strTarget, strlen(strTarget), prefix);
return index;
}
//在文本文件中查找target串出现的行数
int SearchInTxtFile(char* fileName, char* strTarget)
{
FILE* hFile = fopen(fileName, "r";

char str[1024];
int count = 0;


while(fgets(str, 1024, hFile))
{
if(KMP(str, strTarget)!=-1)
{
count++;
}
}

fclose(hFile);
hFile=NULL;

return count;
}

int main()
{
char ch;
char str1[] = "abcabcabctasksb,abTo";
char str2[] = "abc";

double t=clock();
printf("%d\n", KMP(str1,str2));
printf("耗时:%f毫秒!\n", (clock()-t));

t=clock();
printf("find %d \n", SearchInTxtFile("c:\\txt.txt", "NULL");
printf("耗时:%f毫秒!\n", (clock()-t));
scanf("%c", &ch);
return 0;
}
搜索更多相关主题的帖子: 算法 
2007-04-22 00:48
快速回复:[求助]C程序算法
数据加载中...
 
   



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

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