- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
1、使用分治法写一个算法完成一个无序的整数数组的归并排序,并分析算法的时间复杂度。要求:算法的函数表示是MergeSort(1,n)算法对于A[1:n]进行排序,A是一个全局数组,含有n个元素。算法的实现可利用Merge(low,mid,high)计数,其功能是将全程数组A[low:high]进行合并排序,函数调用前,A[low,high]由两部分已经排序的子数组构成:A[low:mid]和A[low+1:high],函数的任务是将这两部分子数组合并成一个整体排好序的数组,再存于数组A[low:high]。(实现时,可认为Merge是已知的,不需要编写)(20分)
解:
(1)递归实现的归并排序:
//2d7-1?递归实现二路归并排序??
#include?stdafx.h??
#include?iostream???????
using?namespace?std;???
??
int?a[]?=?{10,5,9,4,3,7,8};??
int?b[7];??
??
template?class?Type??
void?Merge(Type?c[],Type?d[],int?l,int?m,int?r);??
??
template?class?Type??
void?MergeSort(Type?a[],int?left,int?right);??
??
int?main()??
{??
????for(int?i=0;?i7;?i++)??
????{??
????????couta[i]?;??
????}??
????coutendl;??
????MergeSort(a,0,6);??
????for(int?i=0;?i7;?i++)??
????{??
????????couta[i]?;??
????}??
????coutendl;??
}??
??
template?class?Type??
void?Merge(Type?c[],Type?d[],int?l,int?m,int?r)??
{??
????int?i?=?l,j?=?m?+?1,k?=?l;??
????while((i=m)(j=r))??
????{??
????????if(c[i]=c[j])??
????????{??
????????????d[k++]?=?c[i++];??
????????}??
????????else??
????????{??
????????????d[k++]?=?c[j++];??
????????}??
????}??
??
????if(im)??
????{??
????????for(int?q=j;?q=r;?q++)??
????????{??
????????????d[k++]?=?c[q];??
????????}?????
????}??
????else??
????{??
????????for(int?q=i;?q=m;?q++)??
????????{??
????????????d[k++]?=?c[q];??
????????}??
????}??
}??
??
template?class?Type??
void?MergeSort(Type?a[],int?left,int?right)??
{??
????if(leftright)??
????{??
????????int?i?=?(left?+?right)/2;??
????????MergeSort(a,left,i);??
????????MergeSort(a,i+1,right);??
????????Merge(a,b,left,i,right);//合并到数组b??
??
????????//复制回数组a??
????????for(int?g=left;?g=right;?g++)??
????????{??
????????????a[g]?=?b[g];??
????????}??
????}??
}??
(2)非递归实现的归并排序:
//2d7-1?自然二路归并排序??
#include?stdafx.h??
#include?iostream???????
using?namespace?std;???
??
int?a[]?=?{10,5,9,4,3,7,8};??
int?b[7];??
??
template?class?Type??
void?Merge(Type?c[],Type?d[],int?l,int?m,int?r);??
??
template?class?Type??
void?MergePass(Type?x[],Type?y[],int?s,int?n
文档评论(0)