中国科技大学算法导论_第一次实验报告_第1页
中国科技大学算法导论_第一次实验报告_第2页
中国科技大学算法导论_第一次实验报告_第3页
中国科技大学算法导论_第一次实验报告_第4页
中国科技大学算法导论_第一次实验报告_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

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

文档简介

1、快速排序实验报告SA14225010 1、 题目当输入数据已经“几乎”有序时,插入排序速度很快。在实际应用中,我们可以利用这一特点来提高快速排序的速度。当对一个长度小于k的子数组调用快速排序时,让它不做任何排序就返回。当上层的快速排序调用返回后,对整个数组运行插入排序来完成排序过程。试证明:这一排序算法的期望时间复杂度为O(nk+nlg(n/k)。分别从理论和实践的角度说明我们应该如何选择k?2、 算法思想当输入数据已经“几乎”有序时,插入排序速度很快。当对一个长度小于k的子数组调用快速排序时,让它不做任何排序就返回。当上层的快速排序调用返回后,对整个数组运行插入排序来完成排序过程。累加k的值

2、,计算出当k为不同值时算法运行的时间,来算出当k大约为什么值时运行的时间最短,并与传统的快速排序算法的运行时间进行比较。3、 实验结果输入100个不同的整数值,选取不同的k的值,观察所用时间4、 实验分析理论上看,k的值选取为20到25较好;但是,从实际上来看,当k为50左右时间为39毫秒,最少,但不同的时刻运行后的时间都不相同,而且不同的输入时刻的运行时间也不相同,当数据较大时候,对k 的值的选取有会有所不同,同时不同性能的机器对测试结果也不同,所以对于k值的选取没有固定的数值。#include#includeusing namespace std;#define M 40void swap

3、(int * a,int * b) int tem; tem=*a; *a=*b; *b=tem;int partition(int v,const int low,const int high)int i,pivotpos,pivot;pivotpos=low;pivot=vlow;for(i=low+1;i=high;+i) if(vipivot) pivotpos+; if(pivotpos!=i)swap(vi,vpivotpos); vlow=vpivotpos;vpivotpos=pivot;/coutthe partition function is calledn;return

4、 pivotpos;/*void QuickSort(int a, const int low,const int high)int item; if(lowhigh) item=partition(a,low,high); QuickSort(a,low,item-1); QuickSort(a,item+1,high); */void QuickSort(int a, const int low,const int high)int item;if(high-low=M)return; if(lowhigh) item=partition(a,low,high); QuickSort(a,

5、low,item-1); QuickSort(a,item+1,high); / coutthe QuickSort is calledendl;void InsertSort(int a,const int low,const int high)int i,j;int tem;for(i=1;i=0&temaj) aj+1=aj; j-; aj+1=tem;/coutthe InsertSort is calledendl;void HybridSort(int a,const int low,const int high) QuickSort(a,low,high); InsertSort

6、(a,low,high); coutthe HybidSort is calledendl;int main() int i,a100;/int *a=NULL;long int t;struct timeb t1,t2;/*coutplease input the number of the element:n;a = (int*)malloc(n*sizeof(int);coutplease input every element:endl;*/for( i=0; i100; i+)ai=i+10;/QuickSort(a,0,n-1);ftime(&t1);HybridSort(a,0,99);cout after sorted quickly,the result isendl;for(i=0; i100; i+)coutai ;if(i%10=0)coutendl;coutendl;ftime(&t2);t=(t2.time-t1.time)*1000+(litm); /*

温馨提示

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

评论

0/150

提交评论