欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年c排序算法 .pdf

    • 资源ID:34879057       资源大小:48.15KB        全文页数:8页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年c排序算法 .pdf

    1.稳定性比较插入排序、冒泡排序、二叉树排序、二路归并排序及其他线形排序是稳定的选择排序、希尔排序、快速排序、堆排序是不稳定的2.时间复杂性比较插入排序、冒泡排序、选择排序的时间复杂性为O(n2) 其它非线形排序的时间复杂性为O(nlog2n) 线形排序的时间复杂性为O(n); 3.辅助空间的比较线形排序、二路归并排序的辅助空间为O(n), 其它排序的辅助空间为O(1); 4.其它比较插入、冒泡排序的速度较慢,但参加排序的序列局部或整体有序时,这种排序能达到较快的速度。反而在这种情况下,快速排序反而慢了。当 n 较小时,对稳定性不作要求时宜用选择排序,对稳定性有要求时宜用插入或冒泡排序。若待排序的记录的关键字在一个明显有限范围内时,且空间允许是用桶排序。当 n 较大时,关键字元素比较随机,对稳定性没要求宜用快速排序。当 n 较大时,关键字元素可能出现本身是有序的,对稳定性有要求时,空间允许的情况下。宜用归并排序。当 n 较大时,关键字元素可能出现本身是有序的,对稳定性没有要求时宜用堆排序。1,大家都知道的冒泡排序: i nclude i nclude using namespace std; template 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 8 页 - - - - - - - - - void swap(type x,int,int); template void BubbleSort(type x,int); int main() srand(time(0); const int n=10; int xn; for(int i=0;i x i=rand()%99; for(int i=0;i cout BubbleSort(x,n); coutnAfter Sort: for(int i=0;i cout =0;i-) int flag=0; for(int j=0;j if(x jx j+1) swap(x,j,j+1); flag=1; if(flag=0) return; template void swap(type x,int n,int m) int temp=xn; xn=xm; xm=temp; 2,简单的选择排序i nclude i nclude using namespace std; template void swap(type x,int,int); template void SlectSort(type x,int); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 8 页 - - - - - - - - - int main() srand(time(0); const int n=10; int xn; for(int i=0;i x i=rand()%99; for(int i=0;i cout SlectSort(x,n); coutnAfter Sort: for(int i=0;i cout system(pause); return 0; template void swap(type x,int n,int m) int temp=xn; xn=xm; xm=temp; template void SlectSort(type x,int n) for(int i=0;i for(int j=i+1;j if(x j swap(x,i,j); 3,插入排序i nclude i nclude using namespace std; template void swap(type x,int,int); template void InsertSort(type x,int); int main() srand(time(0); const int n=10; int xn; for(int i=0;in;i+) x i=rand()%99; for(int i=0;in;i+) cout x i; InsertSort(x,n); coutnAfter Sort:endl; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 8 页 - - - - - - - - - for(int i=0;in;i+) cout x i; system(pause); return 0; template void swap(type x,int n,int m) int temp=xn; xn=xm; xm=temp; template void InsertSort(type x,int n) for(int i=1;i0;j-) if(x jx j-1) swap(x,j,j-1); 4:希尔排序i nclude i nclude using namespace std; template void swap(type x,int,int); template void ShellSort(type x,int); template void ShellSorthelper(type x,int,int); int main() srand(time(0); const int n=10; int xn; for(int i=0;in;i+) x i=rand()%99; for(int i=0;in;i+) cout x i; ShellSort(x,n); coutnAfter Sort:endl; for(int i=0;in;i+) cout x i; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 8 页 - - - - - - - - - system(pause); return 0; template void swap(type x,int n,int m) int temp=xn; xn=xm; xm=temp; template void ShellSort(type x,int n) for(int i=n/2;i=1;i/=2) for(int j=0;ji;j+) ShellSorthelper(&x j,i,n-j); template void ShellSorthelper(type x,int len,int n) for(int i=len;i0;j-=len) if(x jx j-len) swap(x,j,j-len); 5,快速排序i nclude i nclude using namespace std; template void QuicklySort(type x,int n); template void QuicklySorthelper(type x,int,int); template void swap(type x,int,int); int main() srand(time(0); const int n=10; int x n; for(int i=0;in;i+) x i=rand()%99; for(int i=0;in;i+) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 8 页 - - - - - - - - - cout x i; QuicklySort(x,n); coutnAfter Sort:endl; for(int j=0;jn;j+) cout x j; system(pause); return 0; template void QuicklySort(type x,int n) QuicklySorthelper(x,0,n-1); template void QuicklySorthelper(type x,int l,int r) if(rl) swap(x,l,(l+r)/2);/ 尽量找出好的轴值 ; int i=l;int j=r+1;type pivot=xl; while(ipivot & ij); if(ij) swap(x,i,j); while(x+ipivot & ij); if(ij) swap(x,i,j); x i=pivot; QuicklySorthelper(x,l,i-1); QuicklySorthelper(x,i+1,r); template void swap(type x,int n,int m) type temp=xn; xn=xm; xm=temp; 6,归并排序 (2 路 ) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 8 页 - - - - - - - - - i nclude i nclude using namespace std; template void swap(type x,int,int); template void MegicSort(type x,int); template void MegicSorthelper(type x,type y,int,int); template void MegicSortPass(type x,type y,int,int,int); int main() srand(time(0); const int n=10; int xn; for(int i=0;in;i+) x i=rand()%99; for(int i=0;in;i+) cout x i; MegicSort(x,n); coutnAfter Sort:endl; for(int i=0;in;i+) cout x i; system(pause); return 0; template void swap(type x,int m,int n) type temp=xm; xm=xn; xn=temp; template void MegicSort(type x,int n) type *y=new typen; int len=1; while(lenn) MegicSorthelper(x,y,len,n);len*=2; MegicSorthelper(y,x,len,n);len*=2; delete y; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 8 页 - - - - - - - - - template void MegicSorthelper(type x,type y,int len,int n) int i; for(i=0;i+2*lenn;i+=2*len) MegicSortPass(x,y,i,i+len,i+2*len); if(i+lenn) MegicSortPass(x,y,i,i+len,n); else for(;in;i+) y i=x i; template void MegicSortPass(type x,type y,int l,int m,int n) int i=l,j=m,k=l; for(;im & jx j) y k=x j+; else y k=x i+; for(;im;i+) y k+=x i; for(;jn;j+) y k+=x j; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 8 页,共 8 页 - - - - - - - - -

    注意事项

    本文(2022年c排序算法 .pdf)为本站会员(Che****ry)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开