1、演算法演算法(Algorithms)內容:本課程對象以對利用計算機來解決問題有興趣的同學為主。本課程主要是教授基本的演算法分析與設計技巧,並整理及比較目前最重要之演算法。Theme:What is the best algorithm for a given problem Three things you will learn:1.Design a good algorithm2.Analyze(and verify)it 3.Lower bounds:know when to stop.Grading1.作業,Term Project (20-25%)2.期中考(35-40%)3.期末考(
2、40%)Course Information Instructor:顏嗣鈞 E-mail:yenee.ntu.edu.tw Office:Rm.BL-525 Phone:3366 3581 http:/www.ee.ntu.edu.tw/yen Office Hours:by appointment Teaching Assistant(s):to be announced later Web site:http:/www.ee.ntu.edu.tw/yen/courses/algorithms06.htmlTextbook T.Cormen,C.Leiserson,R.Rivest,and
3、C.Stein Introduction to Algorithms,2nd Ed.MIT Press and McGraw-Hill Book Company,2001Reference Books Anany Levitin Introduction to The Design&Analysis of Algorithms.Addison-Wesley,2002Reference Books J.Kleinberg,E.Tardos.Algorithm Design.Addison-Wesley,2005.Reference Books G.Brassard and P.Bratley,F
4、undamentals of Algorithmics,Prentice-Hall,1996.Reference Books G.Rawlins,Compare to What?An Introduction to the Analysis of Algorithms,Computer Science Press,1992.Reference Books D.E.Knuth,The Art of Computer Programming,Vol.1 and 3,Third Edition,Addison Wesley,1997.Reference Books D.Harel,The Scien
5、ce of Computing,Addison Wesley,1987.Reference Books Robert Sedgewick,Algorithms(in C,C+,Pascal),Second Edition,Addison Wesley,1992Reference Books U.Manber,Introduction to Algorithms,Addison Wesley,1989.Reference Books J.Nievergelt,Algorithms and Data Structures(With Applications to Graphics and Geom
6、etry),Prentice-Hall,1993.Reference Books B.Moret and H.Shapiro,Algorithms from P to NP,Vol.1,The Benjamin/Cummings Publishing Company,Inc.,1991.Life Cycle of Software Development Problem Interpretation Formal DescriptionModeling and Analysis of the ProblemAlgorithm AnalysisAlgorithm Design Algorithm
7、 Implementation Program VerificationSpecificationappropriate assumptionsAbstractionProblem representation,properties of the problemIdeas,Data structuresNot O.K.DO NEO.K.Partial correctness,TerminationFaithful codingcomplexity;correctnessdesign techniquesSatisfiedNot satisfiedTopics Techniques for al
8、gorithm design Divide and conquer,partitioning.Dynamic programming.Greedy algorithms.Backtracking.Tree based algorithms.Recursion.Approximations.Problem Transformation,reduction.Integer programming.Probabilistic techniques.Topics Sorting and searching algorithms.Geometric algorithms Graph algorithms
9、.Pattern matching algorithms Cryptographic algorithms.Network flow algorithms.Intractable problems.Introduction to computational complexity.Reductions NP completeness.TopicsIf time permits,the following topics will be covered:Introduction to program verification.Introduction to approximation algorit
10、hms.Introduction to probabilistic algorithms.Introduction to parallel algorithms.Introduction to distributed algorithms.Some Algorithm Application AreasDesignApplyAnalyzeAn Example in the Design and Analysis of an Algorithm Demonstrates:-Recurrence Relations-Design Techniques-The fact that analysis
11、provide useful information Problem to be solved:BUNNY PROBLEMWhen a pair of rabbits is less than one month old,it cannot reproduce,but during the second and each succeeding month of life,each pair of rabbits gives rise to one new pair of rabbits.Given that you(Fibonacci)just purchased a pair of new
12、born rabbits,how many pairs will you have n months from now?IllustrationObservation MonthPairs of newborn rabbits at months end(S(n)Pairs of mature rabbits at months end(B(n)Total pairs of rabbits at months end(f(n)01234567101123580112358131123581321The Recurrence Relation i 0 1 2 3 4 5 6 7 8 9 .f(i
13、)1 1 2 3 5 8 13 21 34 55 .f(i)satisfies the following recurrence relationf(i)=f(i-1)+f(i-2)for I 2,f(0)=f(1)=1 B(n+1)=B(n)+S(n)=f(n)S(n+1)=B(n)=f(n-1)f(n+1)=B(n+1)+S(n+1)=f(n)+f(n-1)Solution#11.Function f(n:integer):integer;2.begin3.if n 1 then return(1)4.else return(f(n-1)+f(n-2)5.end.Analysis:Two
14、factors-#of function calls and#of additions.Let FC(n)=#of function calls needed to evaluate f(n)ADD(n)=#of additions needed Consider a tree of function calls(showing the value of n at each node).Analysis Thus,we have the recurrence relationsFC(n)=FC(n-1)+FC(n-2)+1,if n2 FC(0)=FC(1)=1ADD(n)=ADD(n-1)+
15、ADD(n-2)+1,if n2 ADD(0)=ADD(1)=0 Later,we will learn how to solve such equations.For nowf(n)=FC(n)=2f(n)-1,ADD(n)=f(n)-1Derivation125151125151nn Since Hence,f(n)=ADD(n)and FC(n)=O(1.618n)Exponential!Asymptotic Performance01251,1251n125151125151nn)618.1(125151nOnOAvoid Redundant Computations We can u
16、se the dynamic programming technique.Idea:Solving the problem(calculating f(n)consists of solving two smaller problems(calculating f(n-1)and f(n-2)and merging(i.e.,adding)the two smaller solutions to obtain a solution to the original problem.Also,we will have to solve the same problem more than once
17、.When a problem has these characteristics,build up a TABLE of SOLUTIONS to the smaller problems,starting with the smallest,and proceed upwards to the largest(original)problem.Solution#2 1.Program FIB2.var f:array0.n of integer;i:integer;3.begin4.f0:=1;5.f1:=1;6.for i:=2 to n do fi:=fi-1+fi-2;7.end.T
18、he answer is stored in fn.Analysis Clearly n-1 operations(additions)are required-time is O(n).Space required is also O(n).(Space can be reduce to O(1).)This method usually trades space for time(though not in this case).LINEAR!a vast improvement.Modified Solution#21.Program FIB2.var a,b,i:integer;3.b
19、egin4.a:=1;5.b:=1;6.for i:=2 to n do 7.begin b:=a+b;a:=b a end;8.end.The answer is stored in the variable“b”.Interlude This still doesnt seem very good.Do we need to calculate all the f(i)?Cant we skip over some?Try substituting recurrence into itself.f(n)=f(n-1)+f(n-2)=f(n-2)+f(n-3)+f(n-2)=2f(n-2)+
20、f(n-3)=3f(n-3)+2f(n-4)=5f(n-4)+3f(n-5)=8f(n-5)+5f(n-6)(these#s look familiar)Conjecture:f(n)=f(a)f(n-a)+f(a-1)f(n-a-1)where n2;n-1 a 1.1.Function f(x:integer):integer;2.var i,j:integer;3.begin4.if x 1 then return(1)5.else begin6.j:=x/2;7.i:=x/2;8.return(f(i)*f(j)+f(i-1)*f(j-1);9.end;10.end.Solution#
21、3 Analysis Why did we choose i and j x/2?Another design heuristic-BALANCING:divide problem sizes as evenly as possible.Divide and Conquer.Let n=100 Look at tree of function calls(notice that FC(n)=4FC(n/2)+1,FC(1)=1).Analysis What Happened?But obviously the above can be improved.f(100)calls f(50)twi
22、ce!Another important technique-(subtree isomorphism)Eliminate REDUNDANT Computation A Possible Improvement Consider 2 cases:x is even then i=j we want to return f(i)2+f(i-1)2.x is odd then i-1=j we want to return f(i-1)*(f(i)+f(i-2).What does the tree look like now?An even node has 1 even son and 1
23、odd son.Some odd nodes have 2 odd and 1 even sons(5,9,13,.,i.e.1 mod 4).The rest have 1 odd and 2 even sons(3 mod 4).The tree has between O(n1.271)and O(n1.385)nodes.Using the relation f(i)=f(i-1)+f(i-2),we have f(i-2)=f(i)-f(i-1),the odd return value can be further simplified:f(i-1)(f(i)+f(i-2)=f(i
24、-1)(2f(i)-f(i-1)Solution#4 1.Function f(x:integer):integer;2.var i,FI,FIM1:integer;3.begin4.if x 1 then return(1)5.else begin6.i:=x/2;7.FI:=f(i);8.FIM1:=f(i-1);9.if x is even 10.then return(FI*2+FIM1*2)11.else return(FIM1*(2*FI-FIM1)12.end;13.end.Analysis Tree of calls is now completely binary.Take
25、n=32,Height of tree is about log n,hence it has about n nodes,i.e.,FC(n)=O(n).Are You Satisfied?Obviously there still is some redundant computation.Can all the calls at one level be done only once?Then we would have:Solution#5 Procedure calc(x:integer;var fx,fxm1:integer);var i,fi,fim1,fim2:integer;
26、beginif x 1 then begin fx:=1;fxm1:=1 end else begin i:=x/2;calc(i,fi,fim1)if x is even then begin fx:=fi*2+fim1*2;fxm1:=fim1*(2*fi-fim1)end else begin fim2:=fi-fim1;fx:=fim1*(2*fi-fim1);fxm1:=fim1*2+fim2*2 end;end;end.Analysis:Tree obviously has Q(log n)nodes!Solution#6 Repeated SquaringX(n)=AX(n-1)
27、=A(A X(n-2)=An-1 X(1).Use this relation,we can design a Q(log n)algorithm for calculating Fibonacci numbers.Hint:Calculate A,A2,A4,A2log n,then compute An-1 using these items.Questions:Is there a better way for calculating An-1?Exercise Implement the above solutions 1,2 and 6,and compare their runni
28、ng time for calculating f(50),f(100),and f(150).Can your programs calculate f(500)?How about f(1000)?Now,you should realize that real implementation sometimes take a lot of efforts even you understand the underlying algorithm.J(gtwk$fdU*ITolE8$#)aqGRUNqW(Ra7EzXCDYo1XOH)av%GBTrrZWnweLZYLq0Jl2$*dQFVvC
29、am6BLDhUfH-7H)a5R41DH96u74jLdVxmOdXKQ6V!tu)6Zf49rThRgK)8rMkgFrMA*+Sj+$&19gelE2UYi59p05yeb7TnXlW6qxo*foZXnr385kNhDY9x$2kl1t2woSR9YYq(sR48SkLIN3RK76&4Yl14kXs*0rKSVbXKgpxq!xJ4S(2wxw6lWfokYVkpFLsLy)UAnNwgqk)5+fA9XtB-QQ(jSkN8+WNwCsZcv97fV5q(NcEAcCH-9w1wdIAAsZ8WTUUEz1CVf-24ewkysDa9Gx)6TkTnolxt3wcM!nniZd!T
30、F0m2W6cgVxWp&mTODst#OPW*nzuXEnoqrplKOJkQ4czT-8$YJDFZs4$N2!u+OvwFmWE-LtVGraPT7I%iQui4DSCmHKNuVBGO4PM9Txt3zGZEryrzfKJq4xhnQ9l8ngmpetJ-xN0He7rxzeMct%VL1nM+uLggVI6aGeuo6QcKu3WREbvbKH5qRxzPgGYui2RmPIQc-f%nDb7oWzlgdb6F$sacCjw7k3uyiVo9+%VKs-qAoIAZM2+FLL$kW2sUgO-2Y8-h(nEfh*q%Z%ujorlt$ZVq*hv4q+b5i+!mNkBOS+lA
31、ogZwJl03cPdRkSntvfUzP9wrmcT*BUApOd*UHRqTNeutdTGMjBWMZC0y#$5bgM(NGC!+TMJjLlOjY*u*FHWb6&Fd+yeQauV%c*wPXKrjZ3TLk7l(1O2g1TtFjg0u2vnPP6PSEdTp)Fr(NIKal4qdwqn-pCCtf0WOO#j&!f(aZ7)xMJq)4KgVjILP3PRms)6qou!zhzQz8HEzTejEtOSjB1kO84L(eTk5rt6nJJni04E+g#5%wuRZNwUMs&fbYT!mAUSQQRWxr(L+*zEXbso&RREdCGd4)uryFeCpXpyEWIOq
32、A)4K9mewxGc#sO6+FEzHKn(Zao8kOu)AIfkQ!PlKX#ZVMJybJXQjs5iECaxAp2Gs&tW6eqSxDxA3v4pasZ+k)RxoY-4G8ya7ucV-J)(g+KLtrJAvYcr+nTLgABd#bMxpPkBYDpnnB5Q0FyUGWZpsNG(I%+rZfqyo%a3k&3N73QbO37$936lAqZxI1!9ls(WFeZLRb(dEoC81fJh+YPGt9O5d1(Ze2soEmmDz(nNw1yNGSivh&sM63VuefsGLy8pDCGFELI!#RiA0hIpMhQd-J*b1rG%3rSrq$-(bJ%eQb773
33、55&z*yL+uHBv2YfVi&X)2iu3cJrACX$U$eCZ7ilC2Y0GH9e#dd*yZ7lyM)qDRMkB7R!%GJ(&9knu*#Hvq(NABAC%x#2)fpok0ZSNN7M)NfiRS9E050NPSSNR#mXs1ZWGJEUj0s5Z2qVxt&ZCNbyh*9Fgh*qGVZ)6mltOfvnZ(GPjfA7*)9uS6rGV&j&$iyfvqo-b27aZ+nZMZNc!E9eE2$0Oj*XH-ognd6V1uR+KcAbSZSrIg(Vr2*!yZt!pN+Qs6TiyD(3ojc2PnbaJNjbKS*wfckzSzkcdt#HM91skSZ!s
34、a5ab)TK!SvGxMfbY%&JVAAdw(#NLrBnuhMRnsC$jXTVutImR6bqkSx!q6#LmYL3zsNBexKb0%pZBYYDMlwmB6WI1bpK5P#Pfn0f!-vgaZqS4nHD8APVbZD0z4gx-NN-jW6xN+1IuL&3r#GAPP4%hw!QFa(5J$f+nR#&ZU1#4p6-GMY-9EV-%&x1GNYk)MMFulfg4O7e)ojPJ)MRv%eqw0*W#i#UI8hH3LUtTQEjQeZrIf5932xrh!zz9zFBdc9r0JDs5uoxsKSaF+swHY&ukdjaMh6dIJbn$6(C!350$VSX2
35、w74p3mOCV15#uNvdo+SuChjx6qFDtb*7D)m0ZfKC9o&2K-&Goj%fnpTb-P29SiAG8J%GV1$4$26CX1c9*KeFPD3c#4RYn8eAwX8q#D9$NPwTSjfM&NpkhwMiMqxSNLeE)3oQPey620Q#A2nbIqWTsSW860f5Wz86(O$4qvNc*2*3MTmgy0UOHtb&RZUCteoKNebPHOk#NWQWF&W%84t2e56aa$Q#kNbwR24%D2F1K4PEZ)*ZwilgpzH#)hSCWow6fUR2IwyKBe#Frc3MutU&KH)C!(6vIEi$K0vZtUJlkE+)
36、r%2SG$VUH$X$8u42kt77iP!U)vxV8xE1mrcLUzSzNjev%Hw4312p8Prm*ncNUdxoFfq9gtEUP!kR$RckQRbA6)l+B08kfbE-WY)LK0MuXDRaQvjwL&m#JL-MTmpDqB+QUMwnJCog8Lho46iG6Fq*+ePgY20+Xz$*ZWaqGIdIK15BEiE&4wL$g%)+0ztNlnf&z+wF3tIIqKDY%M$&*#wfinzU!)BU5RT2P*Y#Te7lwFw6SmKgw2lF!ip0t&7wWquIS$r7O7jbP!J%KXrd1I1e2$O$d#g8lNN2JdaT(EVhV28N
37、rHeadPzVm1qrcHf9e8Z#8lai#jp66h!6$pBu8L6xXgUcrqr005dLJl3p4&!b8DNoIed7$MaAmhTz&HpzNwk!yFn9XmpXLb4aENHoA)x*pKUO6QQ9-bjTXKg%PWXML$r+5C9NX5xz!oN+zX%i%Zt82V38NuX7NGk0(s7PkG-isp3xDgzjAjg#gaesUymDTVy+h9HWggWw%(*mjcm9vXxH1J9twmQPwWGOBaOfK0gjsZISmnZ(KzuH+BlH%hVf-BhWVk4y20ff)%jxR302TO5SRdoIM8SWL8FrVhR6no8FW6X3
38、XddId-*0l8-HD8DihFp$lG0+hj-$5)*5*#w*!C!3y4v2am3#yeCT32BX!LsnODvX#aHeEY83H1gi%glOOk67CVGa*0)-5OJT2JZ1Xl4AY3-l0)0vtxWy%5&tz7eSO+F2+VzqRr91to%NtRF$WWc5rlX7#7&%p9*4FpUD$YNg-)r5OcF*cjbU98P#CKd6aM)tty#UQJ6&dmTzS)VUg1vjVdPp*3UABK2vXTs1DOWbP5jsCO)p*SZj5dzixsygMaq+%JUyqDQZd7786hR$Ov$gAPBiLhz0nxt$G9j2(SU-kM
39、6yVxvI5LC0v&B!#$6xT#vfCCB9uKHMxJ7PR3%ldmjggaF+K!H)!nhGnrPl3(*ywz!G8463bpwh13BaBqX#vg-#qq74v6#$9hv+OMykL4vTGFVj5gVY92o-Bm%aX%b2Lmz!6!yODKNmkpQos&XSEnD8Cvzl%c&6Z-Xv#crDQ)mW+3VhgL&x1Ov7-XeNoHoT$HGy3TDIOni0AKB+*FIG5t-V(+4MTlf*qCBbvTn1NTU8SJ(VX&ISaHXAiXrBFdod-t0lue2qm*b26kDZbsBziT-H98%$bscArLNYIC4cOaf5)D
40、ohTU)F4xOx4JeAWW2Cp%mhLAS8h8VnRr0ZpzMZlI$8lULyMYXjQ9+MfSqedWszusYVF1ilC!nUhJ%2AZAAGR3*5(m#lmqbijh5Pf4kM%&SmdXkde&%oOk(SQA2f2vqUJG1b3SeO8-Cway6ykkLW9wkGTGc#nPfNcv+dU(QuFjD+t6+4j$Gl5)yfOGTa7!BY*DLk%WzaaG()kaVt&oi%krQ6idkvHQTMs!6)y$kdXQ-*ck4#!n9x2gO1Cx%ckNLH75+wnlx*(7ypvcAsVL&E*PkMDpiwUtGo9Kc5&BCTCum8h
41、0Ru9CI)kFM7U(IHTj47pRhL7GbIQGj1pLNjm33C55#31Zc#%2GwO(CZiugPBCQ3w!mL%0$BZJ3&elLV#azXNXZGYUpL+$4Bma%Ff$WEk$0 x$hwzeL2!lhNDK2oyWb%CkVlWZMxNQgkMRtRLLkMjG)4CZ)L5Z0HOnCq$pnyOo)%h4xkHatFMgjUyHBCf84yCTAu5wfH%rq%4#qILEbuOAom1Jy1KGKG*HyN#Qy7UkDYB!GysS1W4SOnLTOze#DepplRA$t-68$t%BG5o9ru7eI9C4A5TC$Z+NKXaG7J9DY(Z
42、-MRjnFGkwunLwj+MEgToh7ZRyT2F8Ao*7YLBsf&z#+I80bp0q%p3TcNyjFDryM#g-qXPl-oY5pAU80Lrghy)TD-(29Wom&+Gc6GZlJf7hWzRvJ4WY#ruEIIZWNt)jk-kk!0OyAL86AE&C!P4%m8RzTtX2$0I0*h-UFl%9$%gGB+)tf0+SOEfDDk%PN1(ozs9UVzI&PaOrrK*mJ*1XlsqbxoMBLtXshq+JGc!SXe7ospjXVJeT0f4$LnX9lDqr)3H!E%zJA5*-2zI3vSlgG6WACxUb!SSOI!YNpV-Yns1nUZ*
43、A85G!gIBlki%btq4g(hqM&ANz5IbO0c9#ls75k1beGfng1R46LLW#a6kOXt3ZLOmOBut68etVrht*JhpCGgYRM42#lS3fkrXZT97&vQ9e1Vn(JmC+Fa9YeeNGxxF#IHeZ)gDFpBRN9UIqoHBV6f7I2B2D+nz+k!MnBf31AjR+r4BYQPL6DbrUZFO3-!GDP3y)y*nGV(rqgTUdq53zc&5UqvUgZXW+IWqvBDeBEr0z$iJv%g7hXsEng#t$4KWBfIxrOGCSn$-xtHI2W$hL*7ef8BXdy*jI$4uycxDWFXX6a&M
44、Mzu78BoIvWVwXDHWo+Za7waBma(n#uVLBDr7(Q+i2(0jVHTooY!+QTpWrgn7vGJjFUy*ADZm67zJ$8xIdVylkz-UC*!9iz7weDtN82VgY#I!)A%LifW4tM8Ps8YA5(QRvUOdpZM7QLM8%6XeVslcsCLrY3WcbYixzth4GMW04r54lrrpiRB%KhQn*-znAxa+0voSQn&(hP7r$M36GD1Km45f&x-l7TeZ$8oIw&ef*n9GB0vR5dvRkPfWiZJX%-uQ)UGxuNkCJHAsmluOfAu)pM-#Z+WFT-7WeNwhiv%RF-Gcn6BIBfUiMt*rUNMe)rLTj4dYWQz7Y9IlKYL&yrMuKuUT3Jw1&S)ln8kYhmwpg!tZi6h!pPvbZy)jqdNW&LFSneA)Xy3u4rg-*Z%#A#mi$bqQn8249dhoFzXG$%M
侵权处理QQ:3464097650--上传资料QQ:3464097650
【声明】本站为“文档C2C交易模式”,即用户上传的文档直接卖给(下载)用户,本站只是网络空间服务平台,本站所有原创文档下载所得归上传人所有,如您发现上传作品侵犯了您的版权,请立刻联系我们并提供证据,我们将在3个工作日内予以改正。