欢迎来到天天文库
浏览记录
ID:57024908
大小:25.50 KB
页数:4页
时间:2020-07-31
《我爱新浪微博.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验4数组本次实验将练习数组的用法。完成一个程序,该程序要求用户输入整数,并按照输入顺序记录进一个数组。当用户输入-1时标识结束输入结束。程序将记录的数组的顺序进行反序,即原数组第一个数与最后一个数进行交换,依此类推。反序后的数组进行输出在屏幕上。最后对数组进行从小到大排序,并输出排序结果。程序的一次运行结果如下。你可以运行作业材料中附带的已经完成的array.exe程序来了解更多的该程序的输入和输出要求。Enternumbers,oneperline,endingwiththesentinelvalue-1Theprogramwillthendisplaythosevaluesinreve
2、rseorderandsortedorder.?9?3?7?99isalreadyinthearray.Pleaseinputagain?33isalreadyinthearray.Pleaseinputagain?1?2?6?19?-1Thereversearrayisasfollows:19621739Thesortedarrayisasfollows:12367919作业提示:1.该程序的主程序和常量定义已经在作业材料的array.cpp中给出,你不能进行改变。2.程序中需要完成的函数的功能和使用方法如下,你可以增添新的函数,但是你必须在主程序中正确地写出这些函数的原型并实现这些函数的
3、功能。/**Function:GetIntegerArray*Usage:n=GetIntegerArray(array,max,sentinel);*-------------------------------------------------*Thisfunctionreadselementsintoanintegerarrayby*readingvalues,oneperline,fromthekeyboard.Theend*oftheinputdataisindicatedbytheparametersentinel.*Thecallerisresponsiblefordecla
4、ringthearrayand*passingitasaparameter,alongwithitsallocated*size.Thevaluereturnedisthenumberofelements*actuallyenteredandthereforegivestheeffectivesize*ofthearray,whichistypicallylessthantheallocated*sizegivenbymax.Iftheusertypesinmorethanmax*elements,GetIntegerArraygeneratesanerror.*//**Function:P
5、rintIntegerArray*Usage:PrintIntegerArray(array,n);*-----------------------------------*Thisfunctiondisplaysthefirstnvaluesinarray,*oneperline,ontheconsole.*//**Function:ReverseIntegerArray*Usage:ReverseIntegerArray(array,n);*-------------------------------------*Thisfunctionreversestheelementsofarr
6、ay,whichhasnas*itseffectivesize.Theprocedureoperatesbygoingthrough*thefirsthalfofthearrayandswappingeachelementwith*itscounterpartattheendofthearray.*//**Function:SwapIntegerElements*Usage:SwapIntegerElements(array,p1,p2);*------------------------------------------*Thisfunctionswapstheelementsinarr
7、ayatindex*positionsp1andp2.*//**Function:GiveInstructions*Usage:GiveInstructions();*--------------------------*Thisfunctiongivesinstructionsforthearrayreversalprogram.*//**Function:SortIntegerArray*--------
此文档下载收益归作者所有