代码顺序也很重要(算法设计1)

1.顺序很重要:
合并排序递归算法具体步骤:
#ifndef MERGESORT_H_INCLUDED
#define MERGESORT_H_INCLUDED
#includeusing namespace std;
templatevoid Copy(T *a,T *b,int l,int r){
for(int i=l;i<=r;i++){
a[i]=b[i];
}
}
templatevoid Merge(T *c,T *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(i>m){
for(int q=j;q<=r;q++){
d[k++] =c[q];
}
} else{
for(int q=i;q<=m;q++){
d[k++] =c[q];
}
}
template
void MergeSort(T *a,T *b,int left,int right){
if(left < right) {
int i = (left+right)/2;
MergeSort(a,b,left,i);
MergeSort(a,b,i+1,right);
Merge(a,b,left,i,right);
Copy(a,b,left,right);
}
}
#endif // MERGESORT_H_INCLUDED
以上程序是正确的,但是在编程的时候,我不小心把Copy函数放在了MergeSort函数的后面导致程序中一直出现’Copy’ was was not declared in this scope ,and no declarations…

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值