算法分析与设计课件.ppt

算法分析与设计课件.ppt

ID:49499082

大小:1.17 MB

页数:93页

时间:2020-02-06

算法分析与设计课件.ppt_第1页
算法分析与设计课件.ppt_第2页
算法分析与设计课件.ppt_第3页
算法分析与设计课件.ppt_第4页
算法分析与设计课件.ppt_第5页
资源描述:

《算法分析与设计课件.ppt》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、1TheRoleofAlgorithmsinComputing1whatarealgorithms?2whyisthestudyofalgorithmsworthwhile?3whatistheroleofalgorithms?Analgorithmissaidtobecorrectif,foreveryinputinstance,ithaltswiththecorrectoutputTheproblemofsortingInput:sequenceofnumbers.Output:permutation

2、>suchthata'1≤a'2≤…≤a'n.Example:解释什么是实例?Input:824936Output:234689TimeIsImportant“Timeisimportantforeverybody,especiallyforthecomputerscientistwhostudiesalgorithms.”J.S.YuWhatkindsofproblemsaresolvedbyalgorithms?LevelsofHardness1.Thereisnomethodtosolvetheprobleminfinitelymanysteps.2

3、.Theoretically,thereisanalgorithm,buttherunningtimeincreasestoomuchwiththesizeofinput,eventotheuniverseage(NPCproblems).3.Amongthe"good"algorithms,thereisstillahierarchyofrunningtime.多项式算法:把渐近复杂性与规模N的幂同阶的这类算法称为多项式算法。指数型算法:把渐近复杂性与规模N的指数同阶的这类算法称为指数型算法。这两种算法在效率上有质的区别的内在原因是算法渐近复杂性的阶的区

4、别。可见,算法的渐近复杂性的阶对于算法的效率有着决定性的意义。多项式算法是有效的算法。很多问题都有多项式算法。但也有一些问题还未找到多项式算法,只找到指数型算法。Homework1.1-3,1.1-41.2AlgorithmsasatechnologySupposecomputerswereinfinitelyfastandcomputermemorywasfree.Wouldyouhaveanyreasontostudyalgorithms?Comparetherunningtimeofinsertsortandmergesort.Whystudyalg

5、orithmsand performance?•Algorithmshelpustounderstandscalability.•Performanceoftendrawsthelinebetweenwhatisfeasibleandwhatisimpossible.•Algorithmicmathematicsprovidesalanguagefortalkingaboutprogrambehavior.•Performanceisthecurrencyofcomputing.•Thelessonsofprogramperformancegenerali

6、zetoothercomputingresources.•Speedisfun!2GettingStartedAnalysisofAlgorithmsInsertionSortMergeSortTheproblemofsortingInput:sequenceofnumbers.Output:permutationsuchthata'1≤a'2≤…≤a'n.Example:Input:824936Output:234689AnExample:InsertionSortInsertionSort(A,n)

7、{fori=2ton{key=A[i] j=i-1; while(j>0)and(A[j]>key){ A[j+1]=A[j] j=j-1} A[j+1]=key}}AnExample:InsertionSortInsertionSort(A,n){fori=2ton{key=A[i] j=i-1; while(j>0)and(A[j]>key){ A[j+1]=A[j] j=j-1} A[j+1]=key}}301040201234i=j=key= A[j]=A[j+1]=AnExample:InsertionSortInsertionSort

8、(A,n){fori=2ton{key=A[i] j=i-1; w

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

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

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