y;//<->为表示交换的双目运算符,以下同"> y;//<->为表示交换的双目运算符,以下同" />
欢迎来到天天文库
浏览记录
ID:25497985
大小:93.00 KB
页数:26页
时间:2018-11-20
《严蔚敏版数据结构(c语言版)参考答案第一至三章》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第一章绪论1.16voidprint_descending(intx,inty,intz)//按从大到小顺序输出三个数{scanf("%d,%d,%d",&x,&y,&z);if(xy;//<->为表示交换的双目运算符,以下同if(yz;if(xy;//冒泡排序printf("%d%d%d",x,y,z);}//print_descending1.17Statusfib(intk,intm,int&f)//求k阶斐波那契序列的第m项的值f{ inttempd; if(k<2
2、
3、m<0)returnERROR;
4、 if(m5、.如果采用递归编程(大多数人都会首先想到递归方法),则时间复杂度将高达O(k^m).1.18typedefstruct{ char*sport; enum{male,female}gender; charschoolname;//校名为'A','B','C','D'或'E' char*result; intscore; }resulttype;typedefstruct{ 6、 intmalescore; intfemalescore; inttotalscore; }scoretype;voidsummary(resulttyperesult[])//求各校的男女总分和团体总分,假设结果已经储存在result[]数组中{ scoretypescore; i=0; while(result[i].sport!=NULL) { switch(result[i].schoolname) { cas7、e'A': score[0].totalscore+=result[i].score; if(result[i].gender==0)score[0].malescore+=result[i].score; elsescore[0].femalescore+=result[i].score; break; case'B': score.totalscore+=result[i].score; if(result[i].gender==0)score.malesc8、ore+=result[i].score; elsescore.femalescore+=result[i].score; break; …… …… …… } i++; } for(i=0;i<5;i++) { printf("School%d:",i); printf("Totalscoreofmale:%d",score[i].malescore); printf("Totalscoreoffemale:%d",score[i].femalescore)9、; printf("Totalscoreofall:%d",score[i].totalscore); }}//summary1.19Statusalgo119(inta[ARRSIZE])//求i!*2^i序列的值且不超过maxint{ last=1; for(i=1;i<=ARRSIZE;i++) {a[i-1]=last*2*i; if((a[i-1]/last)!=(2*i))reurnOVERFLOW; last=a[i-1]; returnOK; }}//algo119分析:当某一项的结果超过了maxint时,它10、除以前面一项的商会发生异常.1.20voidpolyvalue(){ floa
5、.如果采用递归编程(大多数人都会首先想到递归方法),则时间复杂度将高达O(k^m).1.18typedefstruct{ char*sport; enum{male,female}gender; charschoolname;//校名为'A','B','C','D'或'E' char*result; intscore; }resulttype;typedefstruct{
6、 intmalescore; intfemalescore; inttotalscore; }scoretype;voidsummary(resulttyperesult[])//求各校的男女总分和团体总分,假设结果已经储存在result[]数组中{ scoretypescore; i=0; while(result[i].sport!=NULL) { switch(result[i].schoolname) { cas
7、e'A': score[0].totalscore+=result[i].score; if(result[i].gender==0)score[0].malescore+=result[i].score; elsescore[0].femalescore+=result[i].score; break; case'B': score.totalscore+=result[i].score; if(result[i].gender==0)score.malesc
8、ore+=result[i].score; elsescore.femalescore+=result[i].score; break; …… …… …… } i++; } for(i=0;i<5;i++) { printf("School%d:",i); printf("Totalscoreofmale:%d",score[i].malescore); printf("Totalscoreoffemale:%d",score[i].femalescore)
9、; printf("Totalscoreofall:%d",score[i].totalscore); }}//summary1.19Statusalgo119(inta[ARRSIZE])//求i!*2^i序列的值且不超过maxint{ last=1; for(i=1;i<=ARRSIZE;i++) {a[i-1]=last*2*i; if((a[i-1]/last)!=(2*i))reurnOVERFLOW; last=a[i-1]; returnOK; }}//algo119分析:当某一项的结果超过了maxint时,它
10、除以前面一项的商会发生异常.1.20voidpolyvalue(){ floa
此文档下载收益归作者所有