1 / 104

Back to George One More Time

Back to George One More Time. Before they invented drawing boards, what did they go back to? If all the world is a stage, where is the audience sitting? If the #2 pencil is the most popular, why is it still #2? If work is so terrific, how come they have to pay you to do it?

hollie
Download Presentation

Back to George One More Time

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. Back to George One More Time • Before they invented drawing boards, what did they go back to? • If all the world is a stage, where is the audience sitting? • If the #2 pencil is the most popular, why is it still #2? • If work is so terrific, how come they have to pay you to do it? • If you ate pasta and antipasto, would you still be hungry? • If you try to fail, and succeed, which have you done? • "People who think they know everything are a great annoyance to those of us who do.” - Anon

  2. Lecture 25 O() Analysis Reasonable vs. UnreasonableAlgorithms Using O() Analysis in Design Concurrent Systems Parallelism

  3. Recipe for Determining O() • Break algorithm down into “known” pieces • We’ll learn the Big-Os in this section • Identify relationships between pieces • Sequential is additive • Nested (loop / recursion) is multiplicative • Drop constants • Keep only dominant factor for each variable

  4. LB Comparing Data Structures and Methods Data Structure Traverse Search Insert Unsorted L List N N 1 Sorted L List N N N Unsorted Array N N 1 Sorted Array N Log N N Binary Tree N N 1 BST N N N F&B BST N Log N Log N

  5. Reasonable vs. UnreasonableAlgorithms

  6. Algorithmic Performance Thus Far • Some examples thus far: • O(1) Insert to front of linked list • O(N) Simple/Linear Search • O(N Log N) MergeSort • O(N2) BubbleSort • But it could get worse: • O(N5), O(N2000), etc.

  7. An O(N5) Example For N = 256 N5 = 2565 = 1,100,000,000,000 If we had a computer that could execute a million instructions per second… • 1,100,000 seconds = 12.7 days to complete But it could get worse…

  8. The Power of Exponents A rich king and a wise peasant…

  9. 2N The Wise Peasant’s Pay Day(N)Pieces of Grain 1 2 2 4 3 8 4 16 ... 63 9,223,000,000,000,000,000 64 18,450,000,000,000,000,000

  10. How Bad is 2N? • Imagine being able to grow a billion (1,000,000,000) pieces of grain a second… • It would take • 585 years to grow enough grain just for the 64th day • Over a thousand years to fulfill the peasant’s request!

  11. LB So the King cut off the peasant’s head.

  12. The Towers of Hanoi Goal: Move stack of rings to another peg • Rule 1: May move only 1 ring at a time • Rule 2: May never have larger ring on top of smaller ring A B C

  13. The Towers of Hanoi A B C

  14. The Towers of Hanoi A B C

  15. The Towers of Hanoi A B C

  16. The Towers of Hanoi A B C

  17. The Towers of Hanoi A B C

  18. The Towers of Hanoi A B C

  19. The Towers of Hanoi A B C

  20. The Towers of Hanoi A B C

  21. The Towers of Hanoi A B C

  22. The Towers of Hanoi A B C

  23. The Towers of Hanoi A B C

  24. The Towers of Hanoi A B C

  25. The Towers of Hanoi A B C

  26. The Towers of Hanoi A B C

  27. The Towers of Hanoi A B C

  28. The Towers of Hanoi A B C

  29. Towers of Hanoi - Complexity For 1 rings we have 1 operations. For 2 rings we have 3 operations. For 3 rings we have 7 operations. For 4 rings we have 15 operations. In general, the cost is 2N – 1 = O(2N) Each time we increment N, we double the amount of work. This grows incredibly fast!

  30. Towers of Hanoi (2N) Runtime For N = 64 2N = 264 = 18,450,000,000,000,000,000 If we had a computer that could execute a million instructions per second… • It would take 584,000 years to complete But it could get worse…

  31. The Bounded Tile Problem Match up the patterns in thetiles. Can it be done, yes or no?

  32. The Bounded Tile Problem Matching tiles

  33. Tiling a 5x5 Area 25 available tiles remaining

  34. Tiling a 5x5 Area 24 available tiles remaining

  35. Tiling a 5x5 Area 23 available tiles remaining

  36. Tiling a 5x5 Area 22 available tiles remaining

  37. Tiling a 5x5 Area 2 available tiles remaining

  38. Analysis of the Bounded Tiling Problem Tile a 5 by 5 area (N = 25 tiles) 1st location: 25 choices 2nd location: 24 choices And so on… Total number of arrangements: • 25 * 24 * 23 * 22 * 21 * .... * 3 * 2 * 1 • 25! (Factorial) = 15,500,000,000,000,000,000,000,000 Bounded Tiling Problem is O(N!)

  39. Tiling (N!) Runtime For N = 25 25! = 15,500,000,000,000,000,000,000,000 If we could “place” a million tiles per second… • It would take 470 billion years to complete Why not a faster computer?

  40. A Faster Computer • If we had a computer that could execute a trillion instructions per second (a million times faster than our MIPS computer)… • 5x5 tiling problem would take 470,000 years • 64-ring Tower of Hanoi problem would take 213 days Why not an even faster computer!

  41. The Fastest Computer Possible? • What if: • Instructions took ZERO time to execute • CPU registers could be loaded at the speed of light • These algorithms are still unreasonable! • The speed of light is only so fast!

  42. Where Does this Leave Us? • Clearly algorithms have varying runtimes. • We’d like a way to categorize them: • Reasonable, so it may be useful • Unreasonable, so why bother running

  43. Performance Categories of Algorithms Sub-linear O(Log N) Linear O(N) Nearly linear O(N Log N) Quadratic O(N2) Exponential O(2N) O(N!) O(NN) Polynomial

  44. Reasonable vs. Unreasonable Reasonable algorithms have polynomial factors • O (Log N) • O (N) • O (NK) where K is a constant Unreasonable algorithms have exponential factors • O (2N) • O (N!) • O (NN)

  45. Reasonable vs. Unreasonable Reasonable algorithms • May be usable depending upon the input size Unreasonable algorithms • Are impractical and useful to theorists • Demonstrate need for approximate solutions Remember we’re dealing with large N (input size)

  46. Two Categories of Algorithms Unreasonable 1035 1030 1025 1020 1015 trillion billion million 1000 100 10 NN 2N N5 Runtime Reasonable N Don’t Care! 2 4 8 16 32 64 128 256 512 1024 Size of Input (N)

  47. Summary • Reasonable algorithms feature polynomial factors in their O() and may be usable depending upon input size. • Unreasonable algorithms feature exponential factors in their O() and have no practical utility.

  48. Questions?

  49. Using O() Analysis in Design

  50. Coast, add, delete Air Traffic Control Conflict Alert

More Related