计算机算法分析设计复习题(computer algorithm analysis and design review)

计算机算法分析设计复习题(computer algorithm analysis and design review)

ID:14394942

大小:56.00 KB

页数:36页

时间:2018-07-28

计算机算法分析设计复习题(computer algorithm analysis and design review)_第1页
计算机算法分析设计复习题(computer algorithm analysis and design review)_第2页
计算机算法分析设计复习题(computer algorithm analysis and design review)_第3页
计算机算法分析设计复习题(computer algorithm analysis and design review)_第4页
计算机算法分析设计复习题(computer algorithm analysis and design review)_第5页
资源描述:

《计算机算法分析设计复习题(computer algorithm analysis and design review)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、计算机算法分析设计复习题(Computeralgorithmanalysisanddesignreview)Chapter1algorithmoverview1,thealgorithmmusthavefourproperties:Input:havingzeroormorequantitiessuppliedbytheoutsideasinputtothealgorithmOutput:thealgorithmproducesatleastonequantityasoutputDeterminis

2、tic:eachinstructionthatmakesupthealgorithmisclearandunambiguousFinite:aftertheimplementationofapoorstep,thealgorithmterminates(theprogramcannotsatisfythisproperty,suchastheoperatingsystem,Infiniteloop2.Writeoutthemathematicalexpressionoftheasymptoticbe

3、haviorofthealgorithmcomplexity:(abletowriteupperorderfunctions)suchas:3,thecomplexityofthealgorithmisdividedinto:timecomplexityrequirestime,theamountofresources;spacecomplexityrequirestheamountofspaceresources4,thespacerequiredbytheprogramSpatialspaceS

4、paceconsistsmainlyofinstructionspaceInstructionspaceInstructionspace,,,DataspaceDataspaceDataspace,,,EnvironmentEnvironmentenvironmentEnvironmentstackspaceStackspaceconstitutesastackspaceStackspacestructure:5.Analyzethetimecomplexityoftheprogramsegment

5、BubbleonceA,templateVoid,Bubble(T,a[],int,n){//calculatethemaximumelementinthea[0:n-1]shifttotherightthroughthebubbleFor(int,I,=1,ia[i+1])swap(a[i],a[i+1]);}B,templateVoid,BubbleSort(T,a[],int,n){//calculationina[0:n-1]

6、nelementsthroughthebubblesortFor(int,I,=n,i>1;i--)Bubble(a,I);}Thesecondchapterisrecursionanddivideandconquerstrategy1.Recursiveconcepts(recursivealgorithmscanbewrittenaccordingtorecursiveformulas)suchas:Recursivefunctionsareasfollows:A,int,Factorial(i

7、nt,n){If(n==0)return1;Returnn*Factorial(n-1);}B,Recursiveconcept:analgorithmthatcallsitselfdirectlyorindirectly,knownasarecursivealgorithm;afunctionthatdefinesitselfFunctionsarecalledrecursivefunctionsRecursivedisadvantage:timeandspaceadvantages:easyto

8、understandRecursivesummaryAdvantages:clearstructure,readability,andeasytousemathematicalinductiontoprovethecorrectnessofthealgorithm,soitistosetthecalculationThedebuggingprocessisveryconvenient.Disadvantages:therecursivealgorithmislesse

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。