1 / 27

Introduction to Algorithms Solving Recursions

Introduction to Algorithms Solving Recursions. CSE 680 Prof. Roger Crawfis. Material adapted from Prof. Shafi Goldwasser , MIT. Substitution method. The most general method: Guess the form of the solution. Verify (or refine) by induction. Solve for constants.

skip
Download Presentation

Introduction to Algorithms Solving Recursions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to AlgorithmsSolving Recursions CSE 680 Prof. Roger Crawfis Material adapted from Prof. ShafiGoldwasser, MIT

  2. Substitution method • The most general method: • Guess the form of the solution. • Verify(or refine) by induction. • Solvefor constants. • Example:T(n) = 4T(n/2) + 100n • [Assume that T(1) = Q(1).] • Guess O(n3) . (Prove O and W separately.) • Assume that T(k) £ck3 for k < n . • Prove T(n) £cn3 by induction.

  3. Example of substitution = + T ( n ) 4 T ( n / 2 ) 100n £ + 4 c ( n / 2 )3 100n = + ( c / 2 ) n3 100n = - cn3 (( c / 2 ) n3 - 100n ) desired–residual desired £ cn3 whenever (c/2)n3 – 100n³ 0, for example, if c ³ 200 and n ³ 1. residual

  4. This bound is not tight! Example (continued) • We must also handle the initial conditions, that is, ground the induction with base cases. • Base:T(n) = Q(1) for all n < n0, where n0 is a suitable constant. • For 1 £n < n0, we have “Q(1)”£cn3, if we pick c big enough.

  5. = + T ( n ) 4 T ( n / 2 ) 100n £ + cn2 100n A tighter upper bound? We shall prove that T(n) = O(n2). Assume that T(k) £ck2 for k < n: £ cn2 for no choice of c > 0. Lose!

  6. A tighter upper bound! • IDEA: Strengthen the inductive hypothesis. • Subtracta low-order term. Inductive hypothesis: T(k) £c1k2 – c2k for k < n. = + T ( n ) 4 T ( n / 2 ) 100n £ - + 4 ( c1 ( n / 2 ) 2 c2 ( n / 2 )) 100n = - + c1 n2 2 c2 n 100n = - - c1 n2 c2 n ( c2 -100n n ) £ - c1 n2 c2 n if c2 > 100. Pick c1 big enough to handle the initial conditions.

  7. Recursion-tree method • A recursion tree models the costs (time) of a recursive execution of an algorithm. • The recursion tree method is good for generating guesses for the substitution method. • The recursion-tree method can be unreliable, just like any method that uses ellipses (…). • The recursion-tree method promotes intuition, however.

  8. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2:

  9. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: T(n)

  10. T(n/2) T(n/4) Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2

  11. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 T(n/8) T(n/4) T(n/16) T(n/8)

  12. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 (n/8)2 (n/4)2 (n/16)2 (n/8)2 … Q(1)

  13. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 (n/8)2 (n/4)2 (n/16)2 (n/8)2 … Q(1)

  14. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 (n/8)2 (n/4)2 (n/16)2 (n/8)2 … Q(1)

  15. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 (n/8)2 (n/4)2 (n/16)2 (n/8)2 … … Q(1)

  16. Example of recursion tree Solve T(n) = T(n/4) + T(n/2) + n2: n2 (n/2)2 (n/4)2 (n/8)2 (n/4)2 (n/16)2 (n/8)2 … … Q(1) Total = = Q(n2) geometric series

  17. for x¹ 1 for |x| < 1 Appendix: geometric series

  18. The master method The master method applies to recurrences of the form T(n) = a T(n/b) + f (n) , where a³ 1, b > 1, and f is asymptotically positive.

  19. f (n) a f (n/b) h = logbn a2 f (n/b2) … #leaves = ah = alogbn = nlogba nlogbaT(1) Idea of master theorem Recursion tree: f (n) a … f (n/b) f (n/b) f (n/b) a … f (n/b2) f (n/b2) f (n/b2) … T(1)

  20. Three common cases Compare f (n) with nlogba: • If f(n) = O(nlogba– e) for some constant e > 0. • f (n) grows polynomially slower than nlogba (by an ne factor). • Solution: T(n) = Q(nlogba) . nlogba– e = nlogba /ne

  21. Idea of master theorem Recursion tree: f (n) f (n) a … a f (n/b) f (n/b) f (n/b) f (n/b) a h = logbn … a2 f (n/b2) f (n/b2) f (n/b2) f (n/b2) … … CASE 1: The weight increases geometrically from the root to the leaves. The leaves hold a constant fraction of the total weight. nlogbaT(1) T(1) Q(nlogba)

  22. Three common cases Compare f (n) with nlogba: • If f(n) = Q(nlogba) • f (n) and nlogba grow at similar rates. • Solution: T(n) = Q(nlogbalgn) .

  23. Idea of master theorem Recursion tree: f (n) f (n) a … a f (n/b) f (n/b) f (n/b) f (n/b) a h = logbn … a2 f (n/b2) f (n/b2) f (n/b2) f (n/b2) … … CASE 2: The weight is approximately the same on each of the logbnlevels. nlogbaT(1) T(1) Q(nlogbalgn)

  24. Three common cases (cont.) Compare f (n) with nlogba: • f (n) = W(nlogba+ e) for some constant e > 0. • f (n) grows polynomially faster than nlogba (by an ne factor), • andf (n) satisfies the regularity conditionthat a f (n/b) £cf (n) for some constant c< 1. • Solution: T(n) = Q(f (n)) .

  25. Idea of master theorem Recursion tree: f (n) f (n) a … a f (n/b) f (n/b) f (n/b) f (n/b) a h = logbn … a2 f (n/b2) f (n/b2) f (n/b2) f (n/b2) … … CASE 3: The weight decreases geometrically from the root to the leaves. The root holds a constant fraction of the total weight. nlogbaT(1) T(1) Q( f (n))

  26. Examples Ex. T(n) = 4T(n/2) + n a = 4, b = 2 nlogba=n2; f (n) = n. f(n) = O(n2– e) for e = 1 => Case 1  T(n) = Q(n2). Ex. T(n) = 4T(n/2) + n2 a = 4, b = 2 nlogba=n2; f (n) = n2. f(n) = Q(n2) => Case 2  T(n) = Q(n2lg n).

  27. Examples Ex. T(n) = 4T(n/2) + n3 a = 4, b = 2 nlogba=n2; f (n) = n3. f(n) = W(n2+ e) for e = 1 => Case 3 and4(cn/2)3£cn3 (reg. cond.) for c = 1/2.  T(n) = Q(n3). Ex. T(n) = 4T(n/2) + n2/lgn a = 4, b = 2 nlogba =n2; f (n) = n2/lgn. Master method does not apply. In particular, for every constant e > 0, we have ne= w(lgn).

More Related