1 / 18

03/26/13

Big O and Algorithms (Part 1). 03/26/13. b y Wolfdog1. Discrete Structures (CS 173) Derek Hoiem, University of Illinois. Announcements. Midterm next Tuesday (April 2) Does not include big-O/algorithms More difficult than Midterm 1 All the usual homeworks due this week

holland
Download Presentation

03/26/13

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. Big O and Algorithms (Part 1) 03/26/13 by Wolfdog1 Discrete Structures (CS 173) Derek Hoiem, University of Illinois

  2. Announcements • Midterm next Tuesday (April 2) • Does not include big-O/algorithms • More difficult than Midterm 1 • All the usual homeworks due this week • No homeworks due next week (except maybe reading quiz next Thursday) • Exam prep materials will be up by this Thurs

  3. This week • How do we characterize the computational cost of an algorithm? • How do we compare the speed of two algorithms? • How do we compute cost based on code or pseudocode?

  4. Today • How do we characterize the computational cost of an algorithm? • How do we compare the speed of two algorithms? • How do we compute cost based on code or pseudocode?

  5. What affects an algorithm’s runtime • Computer architecture • Programming language and compiler • Other processes running on the computer • Parameters (input) to the algorithm • Design of the algorithm

  6. What affects an algorithm’s runtime • Computer architecture • Programming language and compiler • Other processes running on the computer • Parameters (input) to the algorithm • Design of the algorithm External factors Design factors

  7. How should we think about an algorithm’s computational cost? • Time taken? • Number of instructions called? • Expected time as a function of the inputs? • How quickly the cost grows as a function of the inputs

  8. Example: Finding smallest m values output = findmin(input, m) % returns m smallest inputs for each ith output (there are m of these) for each jth input (there are n of these) if j is not used and input(j) < output(i) output(i) = input(j); j_out = j; end end mark that j_out has been used as an output end return output See findmin.m

  9. Example: Finding smallest m values minvals = findmin(vals, m) Constants that depend on implementation details, architecture, etc. Dominant factor

  10. Key ideas in runtime analysis • Model how algorithm speed depends on the size of the input/parameters • Ignore factors that depend on architecture or details of compiled code • We care mainly about asymptotic performance • If the input size is small, we’re not usually worried about speed anyway • We care mainly about dominant terms • An algorithm that takes time takes almost as long (as a ratio) as one that takes time if is large

  11. Asymptotic relationships If , then for non-zero

  12. Ordering of functions See plot_functions.m

  13. Example: comparing findmin algorithms See findmin_cost_compare_script.m output = findmin(input, m) % can be implemented different ways for each ith output (there are m of these) for each jth input (there are n of these) if j is not used and input(j) < output(i) output(i) = input(j); j_out = j; end end mark that j_out has been used as an output end return output output = findmin_sort(input, m) sorted_input = sort(input, ascending); output = sorted_input(1…m);

  14. Big-O is iff there are such that for every O(

  15. is if is and is

  16. Proving Big-O with induction Claim: is Definition: is iff there are such that for every . Choose and : , Proof: Suppose is an integer. I need to show for . I will use induction on . Base case: Induction: Suppose for . We need to show .

  17. Things to remember • Model algorithm complexity in terms of how much the cost increases as the input/parameter size increases • In characterizing algorithm computational complexity, we care about • Large inputs • Dominant terms • if the dominant terms in are equivalent or dominated by the dominant terms in • if the dominant terms in are equivalent to those in

  18. Next class • Analyzing pseudocode • Some key concepts to remember for midterm

More Related