网站大量收购独家精品文档,联系QQ:2885784924
  1. 1、本文档共33页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
03-Recursion

Recursion and Induction Algorithm : Design Analysis [3] In the last class… Asymptotic growth rate The Sets ?, ? and ? Complexity Class An Example: Searching an Ordered Array Improved Sequential Search Binary Search Binary Search Is Optimal Recursion and Induction Recursive Procedures Analyzing the Recursive Computation. Induction over Recursive Procedures Proving Correctness of Procedures Thinking Recursively: Problem 1 Towers of Hanoi How many moves are need to move all the disks to the third peg by moving only one at a time and never placing a disk on top of a smaller one. Thinking Recursively: Problem 2 Cutting the plane How many sections can be generated at most by n straight lines with infinite length. Recursion: General Pattern Method99 If the task is to write a procedure p for a problem of size 0 to 100, and There exists a ready-to-use subroutine p99, that can provide the solution for the same problem of size 0-99, then Just figure out a way to write p by calling p99 when needed. IntList delete IntList L, int x IntList newL, fixedL; if L nil newL L; else if x first L newL rest L ; else fixedL delete99 rest L ,x ; newL cons first L ,fixedL return newL Thinking Recursively: Problem 3 Josephus’s problem Find the position to live, or die! Recursion: an Implementation View Activation Frame Basic unit of storage for an individual procedure invocation at run time Providing a frame of reference in which the procedure executes for this invocation only Space is allocated in a region of storage called the frame stack Activation trace Fibonacci Function: An Example int fib int n int f, f1, f2; if n 2 f n; else f1 fib n-1 ; f2 fib n-2 ; f f1+f2; return f; Loop-free Complexity In a computation without while or for loops, but possibly with recursive procedure calls, The time that any particular activation frame is on the top of the frame stack is O L , where L is the number of lines in the procedure that contain either a simple statement or a procedure call.

文档评论(0)

saa9099 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档