算法分析與設(shè)計課件.ppt

算法分析與設(shè)計課件.ppt

ID:49499082

大小:1.17 MB

頁數(shù):93頁

時間:2020-02-06

算法分析與設(shè)計課件.ppt_第1頁
算法分析與設(shè)計課件.ppt_第2頁
算法分析與設(shè)計課件.ppt_第3頁
算法分析與設(shè)計課件.ppt_第4頁
算法分析與設(shè)計課件.ppt_第5頁
資源描述:

《算法分析與設(shè)計課件.ppt》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。

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.多項式算法:把漸近復(fù)雜性與規(guī)模N的冪同階的這類算法稱為多項式算法。指數(shù)型算法:把漸近復(fù)雜性與規(guī)模N的指數(shù)同階的這類算法稱為指數(shù)型算法。這兩種算法在效率上有質(zhì)的區(qū)別的內(nèi)在原因是算法漸近復(fù)雜性的階的區(qū)

4、別。可見,算法的漸近復(fù)雜性的階對于算法的效率有著決定性的意義。多項式算法是有效的算法。很多問題都有多項式算法。但也有一些問題還未找到多項式算法,只找到指數(shù)型算法。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

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。