博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
归并排序
阅读量:6072 次
发布时间:2019-06-20

本文共 614 字,大约阅读时间需要 2 分钟。

#include
#include
#include
#include
#define maxn 1010using namespace std;void merge(int sr[],int tr[],int i,int m,int n){/* 将有序的sr[i..m]和sr[m+1..n]归并为有序的tr[i..n] */ int j,k,l; for(j=m+1,k=i;i<=m&&j<=n;k++)/* 将sr中记录由小到大地并入tr */ { if(sr[i]
> n; int a[n]; memset(a,0,sizeof(a)); for(int i=1;i<=n;i++) cin >> a[i]; msort(a,a,1,n); for(int i=1;i<=n;i++) cout << a[i] << endl; return 0;}/*过程图见大话数据结构408-412*/

 

转载于:https://www.cnblogs.com/l609929321/p/6582265.html

你可能感兴趣的文章
Fabric实战
查看>>
PAT 1003. Emergency
查看>>
三星i9300 unroot || root恢复
查看>>
jsp基础知识
查看>>
离线安装db2的python模块ibm_db
查看>>
环境变量
查看>>
Swift 项目中可能用到的第三方框架
查看>>
我的友情链接
查看>>
普通exe和sys驱动文件结构上有什么不同?
查看>>
Shell脚本查看apk签名信息
查看>>
raid数据恢复,Raid5磁盘阵列数据恢复案例,服务器数据恢复
查看>>
Active Directory授权还原
查看>>
双因素方差分析
查看>>
Skype for Business Server 2015 后端数据库配置镜像见证(mirroring witness)
查看>>
Exchange Server 2013安装(为和Lync Server 2013集成做准备)
查看>>
关于光标属性cursor
查看>>
IIS6.0环境php5.3.6配置
查看>>
智力面试题
查看>>
我的友情链接
查看>>
Web Service 之 http(一)
查看>>