递归与分治算法_第1页
递归与分治算法_第2页
递归与分治算法_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

实验1递归与分治算法一、实验目的和要求进一步掌握递归算法的设计思想以及递归程序的调试技术;理解这样一个观点:分治与递归经常同时应用在算法设计之中。分别用蛮力法和分治法求解最近对问题;分析算法的时间性能,设计实验程序验证分析结论。二、实验内容设p1=(x1,y1),p2=(x2,y2),…,pn二是评面上n个点构成的集合S,设计算法找出集合S中距离最近的点对。三、实验环境TurboC或VC++四、实验学时2学时,必做实验五、数据结构与算法#include<iostream>#include<cmath>usingnamespacestd;typedefstructNode/*定义存储点的结构*/{intx;inty;//点的x,y坐标}Node;typedefstructNList/*定义数据结构*/{Node*data;intcount;}NList;typedefstructCloseNode/*定义辅助的点结构*/{Nodea;Nodeb;doublespace;}CloseNode;intnum;/*归并排序算法*/voidMerge(NodeSR[],NodeTR[],inti,intm,intn)//将有序的SR[i..m]和SR[m+1..n]归并为有序的TR[i..n]{intj,k;for(j=m+1,k=i;i<=m&&j<=n;++k)if(SR[i].x<=SR[j].x)TR[k]=SR[i++];elseTR[k]=SR[j++];while(i<=m)TR[k++]=SR[i++];while(j<=n)TR[k++]=SR[j++];}voidMsort(NodeSR[],NodeTR1[],ints,intt)//将SR[s..t]归并排序为TR1[s..t]{if(s==t)TR1[s]=SR[s];else{intm=(s+t)/2;Node*TR2=newNode[num];Msort(SR,TR2,s,m);Msort(SR,TR2,m+1,t);Merge(TR2,TR1,s,m,t);}}voidMergeSort(NListL){Msort(L.data,L.data,0,L.count-1);}/*将各点坐标输入到数据结构NList中*/voidcreate(NList&L){cout<<"请输入平面上点的数目:〃;cin>>num;L.count=num;L.data=newNode[L.count];cout<<"输入"<<L.count<<"个点坐标X,Y,注意不要输入过大!"<<endl;for(inti=0;i<L.count;++i)cin>>L.data[i].x>>L.data[i].y;}/*求距离平方的函数*/doubleDis(Nodea,Nodeb){return((a.x-b.x)*(a.x-b.x))+((a.y-b.y)*(a.y-b.y));}/*蛮力法求平面点集最近对问题,输入存放平面点集点的结构L、辅助点结构cnode,数组起点下标first与终点下标end*/voidClosestPoints1(constNList&L,CloseNode&cnode,intfirst,intend){for(inti=first;i<=end;++i)for(intj=i+1;j<=end;++j){doublespace=Dis(L.data[i],L.data[j]);if(space<cnode.space){cnode.a=L.data[i];cnode.b=L.data[j];cnode.space=space;}/*分治法求最近对中间2d对称区的算法*/voidMiddle(constNList&L,CloseNode&cnode,intmid,intmidX){inti,j;intd=sqrt(cnode.space);i=mid;while(i>=0&&L.data[i].x>=(midX-d)){j=mid;while(L.data[++j].x<=(midX+d)&&j<=L.count){if(L.data[j].y<(L.data[i].y-d)||L.data[j].y>(L.data[i].y+d))continue;doublespace=Dis(L.data[i],L.data[j]);if(cnode.space>space){cnode.a=L.data[i];cnode.b=L.data[j];cnode.space=space;}}--i;}}/*分治法求平面点集最近对问题,输入存放平面点集点的结构L、辅助点结构closenode,数组起点下标first与终点下标end*/voidClosestPoints2(constNList&L,CloseNode&closenode,intfirst,intend){if((end-first+1)<4)ClosestPoints1(L,closenode,first,end);else{intmid=(first+end)/2;intmidX=L.data[mid].x;ClosestPoints2(L,closenode,first,mid);ClosestPoints2(L,closenode,mid+1,end);Middle(L,closenode,mid,midX);}}/*主函数*/intmain(){cout<<"\t\t********************************************"<<endl;cout<<"\t\t*****蛮力法、分治法实现最近对问题的算法*****"<<endl;cout<<"\t\t********************************************"<<endl;NListlist;CloseNodeclosenode;closenode.space=10000;create(list);cout<<"各点坐标为:"<<endl;for(inti=0;i<list.count;++i)cout<<"X="<<list.data[i].x<<"Y="<<list.data[i].y<<"\n”;if(num>=2){ClosestPoints1(list,closenode,0,list.count-1);cout<<"用蛮力法求最近对:"<<endl;cout<<"最近对为点("<<closenode.a.x<<”,"<<closenode.a.y<<”)和点("<<closenode.b.x<<”,"<<closenode.b.y<<”)”<<endl;cout<<"最近距离为:"<<closenode.space<<endl;cout<<"**************************************"<<endl;cout<<"用分治法求最近对:〃<<endl;MergeSort(list);cout<<"经过归并排序后的各点坐标为:〃<<endl;for(intj=0;j<list.count;++j)cout<<"X="<<list.data[j].x<<"Y="<<list.data[j].y<<"\n”;ClosestPoints2(list,closenode,0,list.count-1);cout<<"最近对为点("<<closenode.a.x<<”,"<<closenode.a.y<<”)和点("<<closenode.b.x<<”,"<<closenode.b.y<<”)”<<endl;cout<<"最近距离为:"<<closenode.space<<endl;return0;}else{cout<<"不存在最近点对!"<<endl;}}六、核心源代码/*蛮力法求平面点集最近对问题,输入存放平面点集点的结构L、辅助点结构cnode,数组起点下标first与终点下标end*/voidClosestPoints1(constNList&L,CloseNode&cnode,intfirst,intend){for(inti=first;i<=end;++i)for(intj=i+1;j<=end;++j){doublespace=Dis(L.data[i],L.data[j]);if(space<cnode.space){cnode.a=L.data[i];cnode.b=L.data[j];cnode.space=space;}}}/*分治法求平面点集最近对问题,输入存放平面点集点的结构L、辅助点结构closenode,数组起点下标first与终点下标end*/voidClosestPoints2(constNList&L,CloseNode&closenode,intfirst,intend){if((end-first+1)<

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论