- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实现快排最优版本算法上机报告
算法导论第二次上机报告
班级:1403018 姓名:张可心 学号:14030188030
(一)题目一
一、问题
This project requires you to implement an optimized version of quicksort, and compare the performances of the following combinations:
Cutoff values from 0 to 50;
Take pivot to be the 1st element, random, median of random three, and median of random five.
The tests must be done on the following three kinds of inputs:
sorted input;
reverse-ordered input;
random input.
The size of input can be taken from 1000 to 10000. The run times must be plotted with respect to the sizes to illustrate the difference. (figure out using excel, matlab in the Report)
二、问题分析
实现快排的最优版本,分别选取第一个数,随机数,三个随机数的中位数,五个随机数的中位数为基数,设置顺序,随机,逆序三种形式,用_qsort(int a[],int p,int r,int number)和Partition(int a[],int p,int r,int number)俩函数进行排序。
三、算法伪代码
void _qsort(a, p, r, number)
if pr
q=Partition(a,p,r,number)
_qsort(a,p,q-1,number)
_qsort(a,q+1,r,number)
int Partition(int a[],int p,int r,int number)
{
int x,temp;
if(number==1)
{
temp=p;
}
else if(number==2)
{
temp=rand()%(r-p+1)+p;
}
else if(number==3)
{
int b[5];
b[1]=rand()%(r-p+1)+p;
b[2]=rand()%(r-p+1)+p;
b[3]=rand()%(r-p+1)+p;
sort(b+1,b+4);
temp=b[2];
}
else if(number==4)
{
int b[10];
b[1]=rand()%(r-p+1)+p;
b[2]=rand()%(r-p+1)+p;
b[3]=rand()%(r-p+1)+p;
b[4]=rand()%(r-p+1)+p;
b[5]=rand()%(r-p+1)+p;
sort(b+1,b+6);
temp=b[3];
}
else{
temp=p;
}
x=a[temp];
swap(a[temp],a[p]);
int i=r+1;
for(int j=r;jp;j--)
{
if(a[j]=x)
{
i--;
swap(a[i],a[j]);
}
}
swap(a[i-1],a[p]);
return i-1;
}
int main()
{
int n,a[200000];
cout测试数据:;
cinn;
for(int i=1;i=n;i++)
a[i]=random(51);
cout序列的顺序(1顺序;2随机;3逆序):;
int s;
cins;
if(s==3)
sort(a+1,a+1+n,greaterint());//对生成数进行排列
else if(s==1)
sort(a+1,a+1+n);
else if(s==2){
}
else{
}
cout确定基数:1,第一个数;2,随机数;3,3个随机数的中位数;4,5个随机数的中位数:;
int number;
cinnumber;
clock_t start,end;//计时
start=clock();
_
您可能关注的文档
最近下载
- 2021年医疗器械三类经营许可现场资料整理.pdf
- 山东省烟台市芝罘区2023-2024学年六年级(五四学制)上学期期末地理试题(含答案).docx VIP
- 2024年佳木斯大学附属第一医院招聘院内聘用行政管理考试真题及答案.pdf VIP
- Unit7Atweekends(FuntimeGrammartime)(课件)译林版英语五年级上册.pptx
- 工学一体化课程《小型网络安装与调试》任务1教学单元2教学单元活动方案.docx VIP
- 深信服AC初级认证考试题库.pdf
- JIS G3472-2007汽车结构用电阻焊碳钢管.pdf
- 山东省烟台市芝罘区2022-2023学年六年级上学期期末生物试题(含答案).docx VIP
- 工厂安全宣传标语.doc VIP
- 第三单元探索1 物联网数据传输的需求分析 教学课件 苏科版信息科技八年级上册.pptx
文档评论(0)