ImageVerifierCode 换一换
格式:DOC , 页数:23 ,大小:262KB ,
资源ID:2639571      下载积分:20 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.docduoduo.com/d-2639571.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(并行计算实验指导(1)免费版.doc)为本站会员(dreamzhangning)主动上传,道客多多仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知道客多多(发送邮件至docduoduo@163.com或直接QQ联系客服),我们立即给予删除!

并行计算实验指导(1)免费版.doc

1、11. 大家支持免费共享2. 2 串匹配串匹配(String Matching)问题是计算机科学中的一个基本问题,也是复杂性理论中研究的最广泛的问题之一。它在文字编辑处理、图像处理、文献检索、自然语言识别、生物学等领域有着广泛的应用。而且,串匹配是这些应用中最耗时的核心问题,好的串匹配算法能显著地提高应用的效率。因此,研究并设计快速的串匹配算法具有重要的理论价值和实际意义。串匹配问题实际上就是一种模式匹配问题,即在给定的文本串中找出与模式串匹配的子串的起始位置。最基本的串匹配问题是关键词匹配(Keyword Matching) 。所谓关键词匹配,是指给定一个长为 n 的文本串 T1,n和长为

2、m 的模式串 P1,m,找出文本串 T 中与模式串所有精确匹配的子串的起始位置。串匹配问题包括精确串匹配(Perfect String Matching) 、随机串匹配(Randomized String Matching)和近似串匹配(Approximate String Matching) 。另外还有多维串匹配(Multidimensional String Matching)和硬件串匹配(Hardware String Matching)等。本章中分别介绍改进的 KMP 串匹配算法,采用散列技术的随机串匹配算法,基于过滤算法的近似串匹配算法,以及它们的 MPI 编程实现。2.1 KMP

3、串匹配算法2.1.1 KMP 串匹配及其串行算法KMP 算法首先是由 D.E. Knuth、J.H. Morris 以及 V.R. Pratt 分别设计出来的,所以该算法被命名为 KMP 算法。KMP 串匹配算的基本思想是:对给出的的文本串 T1,n与模式串 P1,m,假设在模式匹配的进程中,执行 Ti和 Pj的匹配检查。 若 Ti=Pj,则继续检查 Ti+1和 Pj+1是否匹配。若 TiPj,则分成两种情况:若 j=1,则模式串右移一位,检查 Ti+1和 P1是否匹配;若 1#include #include #include /*根据输入参数生成模式串*/int main(int argc

4、,char *argv)17int strlen,pedlen,suffixlen,num,i,j;char *string;FILE *fp;strlen=atoi(argv1);pedlen=atoi(argv2);srand(atoi(argv3);string=(char*)malloc(strlen*sizeof(char);if(string=NULL)printf(“malloc errorn“);exit(1);for(i=0;i#include #include #include #include #include #define MAX(m,n) (mn?m:n)typed

5、ef structint pedlen;int psuffixlen;int pednum;pntype;/*对模式串进行周期分析,并计算相应的 new 和newval 值*/void Next(char *W,int patlen,int *nextval,pntype *pped)int i,j,plen;int *next;if(next=(int *)malloc(patlen+1)*sizeof(int)=NULL)printf(“no enough memoryn“);exit(1);/*计算 next 和 nextval*/ next0=nextval0=-1;j=1;while

6、(jpedlen=patlen-nextpatlen; pped-pednum=(int)(patlen/pped-pedlen); pped-psuffixlen=patlen%pped-pedlen; free(next);/*改进的 KMP 算法*/void kmp(char *T,char*W,int textlen,int patlen,int *nextval,pntype *pped,int prefix_flag,int matched_num,int *match,int *prefixlen)int i,j;i=matched_num; j=matched_num; whi

7、le(i(textlen-i)break;while(j!=(-1) if(j=(patlen-1) matchi-(patlen-1)=1;if(pped-pednum+pped-psuffixlen=1)j = -1 ; else j=patlen-1-pped-pedlen; j+;i+; (*prefixlen)=j;/*重构模式串以及 next 函数*/void Rebuild_info(int patlen,pntype *pped,int *nextval,char *W) int i; if (pped-pednum = 1) memcpy(W+pped-pedlen,W,pp

8、ed-psuffixlen); else memcpy(W+pped-pedlen,W,pped-pedlen);for (i=3; ipednum; i+) memcpy(W+(i-1)*pped-pedlen,W,pped-pedlen);memcpy(nextval+(i-1)*pped-pedlen,nextval+pped-pedlen,pped-pedlen*sizeof(int); if(pped-psuffixlen!=0)memcpy(W+(i-1)*pped-pedlen,W,pped-psuffixlen);memcpy(nextval+(i-1)*pped-pedlen

9、,nextval+pped-pedlen,pped-psuffixlen*sizeof(int); /*生成文本串*/void gen_string(int strlen,int pedlen,char *string,int seed)int suffixlen,num,i,j;srand(seed);for(i=0;i1)MPI_Send(elseMPI_Recv(PrintFile_info(“match_result“,T,myid);if(myid!=numprocs-1)MPI_Send(printf(“n“);if(match=(int *)malloc(textlen*size

10、of(int)=NULL)printf(“no enough memoryn“);exit(1);/*处理器 0 读入模式串,并记录运行参数*/if(myid=0) printf(“processor num = %d n“,numprocs);printf(“textlen = %dn“,textlen*numprocs); GetFile(“pattern.dat“, printf(“patlen= %dn“,patlen); if(nextval=(int *)malloc(patlen*sizeof(int)=NULL)printf(“no enough memoryn“);exit(

11、1);/*对模式串进行分析,对应于算法 14.6步骤(1)*/Next(W,patlen,nextval,if(numprocs1)if (pped.pednum=1) nextlen_send = patlen;else nextlen_send = pped.pedlen*2;/*向各个处理器播送模式串的信息,对应于算法 14.6 步骤(2)*/if(numprocs1)MPI_Bcast( if(myid!=0)if(nextval=(int *)malloc(patlen*sizeof(int)=NULL)|(W=(char *)malloc(patlen*sizeof(char)=N

12、ULL)printf(“no enough memoryn“);21exit(1);MPI_Barrier(MPI_COMM_WORLD);MPI_Bcast( MPI_Bcast(MPI_Bcast(nextval,nextlen_send,MPI_INT,0,MPI_COMM_WORLD); MPI_Bcast(W,pped.pedlen,MPI_CHAR,0,MPI_COMM_WORLD);MPI_Barrier(MPI_COMM_WORLD);/*调用修改过的 KMP 算法进行局部串匹配,对应于算法 14.6 步骤(3)*/if(numprocs=1) kmp(T,W,textlen,

13、patlen,nextval,else if(myid!=0)/*各个处理器分别根据部分串数据以及周期信息重构模式串*/Rebuild_info(patlen, if(myid!=numprocs-1)kmp(T,W,textlen,patlen,nextval,elsekmp(T,W,textlen,patlen,nextval,MPI_Barrier(MPI_COMM_WORLD);/*各个处理器进行段间匹配,对应于算法 14.6 步骤(4)*/if(myid0) MPI_Recv( MPI_Barrier(MPI_COMM_WORLD);if(myid0) MPI_Barrier(MPI

14、_COMM_WORLD);/*输出匹配结果*/if(myid=0)PrintFile_res(“match_result“,match+patlen-1,textlen-patlen+1,0,myid);if(numprocs1)MPI_Send(elseMPI_Recv(PrintFile_res(“match_result“,match,textlen,myid*textlen-patlen+1,myid);if(myid!=numprocs-1)MPI_Send(22free(T);free(W);free(nextval);MPI_Finalize(); 233. 运行实例编译:gcc

15、 gen_ped.c o gen_pedmpicc kmp.c o kmp运行:首先运行 gen_ped 生成模式串,gen_ped Strlen Pedlen Seed Pattern_File。其中 Strlen代表模式串的长度,Pedlen 代表模式串的最小周期长度,Seed 是随机函数使用的种子数,Pattern_File 是生成数据存储的文件,这里在 kmp.c 中固定指定的文件名为 pattern.dat。本例中使用了如下的参数。gen_ped 3 2 1 pattern.dat之后可以使用命令 mpirun np SIZE kmp m n 来运行该串匹配程序,其中 SIZE 是所

16、使用的处理器个数,m 表示文本串长度, n 为文本串的周期长度。本实例中使用了 SIZE=3 个处理器,m=18 ,n=3。mpirun np 3 kmp 18 2运行结果:存储于 pattern.dat 中的模式串为:qmq存储于 match_result 中的匹配结果为:The Text on node 0 is asasas .The Text on node 1 is qmqmqm .The Text on node 2 is ypypyp .This is the match result on node 0(0) -(1) -(2) -(3) -This is the match result on node 1(4) -(5) -(6) +(7) -(8) +(9) -This is the match result on node 2(10) -(11) -(12) -(13) -(14) -(15) -说明:该运行实例中,令文本串长度为 18,随机产生的文本串为 asasasqmqmqmypypyp,分布在 3 个节点上;模式串长度为 3,随机产生的模式串为 qmq。最后,节点 1 上得到两个匹配位置,由+表示出来。

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报