Algorithms and Their Complexity

Similar documents
Announcements. CompSci 230 Discrete Math for Computer Science. The Growth of Functions. Section 3.2

Discrete Mathematics CS October 17, 2006

ECOM Discrete Mathematics

3. Algorithms. What matters? How fast do we solve the problem? How much computer resource do we need?

Announcements. CompSci 102 Discrete Math for Computer Science. Chap. 3.1 Algorithms. Specifying Algorithms

CISC 235: Topic 1. Complexity of Iterative Algorithms

Analysis of Algorithm Efficiency. Dr. Yingwu Zhu

CSCE 222 Discrete Structures for Computing

Growth of Functions. As an example for an estimate of computation time, let us consider the sequential search algorithm.

With Question/Answer Animations

COMP 182 Algorithmic Thinking. Algorithm Efficiency. Luay Nakhleh Computer Science Rice University

Big O 2/14/13. Administrative. Does it terminate? David Kauchak cs302 Spring 2013

The Growth of Functions (2A) Young Won Lim 4/6/18

Computational Complexity

Theory of Computation

Asymptotic Analysis. Thomas A. Anastasio. January 7, 2004

CSED233: Data Structures (2017F) Lecture4: Analysis of Algorithms

Algorithms 2/6/2018. Algorithms. Enough Mathematical Appetizers! Algorithm Examples. Algorithms. Algorithm Examples. Algorithm Examples

csci 210: Data Structures Program Analysis

Ch01. Analysis of Algorithms

Lecture 1: Asymptotics, Recurrences, Elementary Sorting

Lecture 2. More Algorithm Analysis, Math and MCSS By: Sarah Buchanan

Ch 01. Analysis of Algorithms

CS 4407 Algorithms Lecture 2: Iterative and Divide and Conquer Algorithms

csci 210: Data Structures Program Analysis

Analysis of Algorithms

CS 310 Advanced Data Structures and Algorithms

Mat Week 6. Fall Mat Week 6. Algorithms. Properties. Examples. Searching. Sorting. Time Complexity. Example. Properties.

Student Responsibilities Week 6. Mat Properties of Algorithms. 3.1 Algorithms. Finding the Maximum Value in a Finite Sequence Pseudocode

Growth of Functions (CLRS 2.3,3)

Algorithm. Executing the Max algorithm. Algorithm and Growth of Functions Benchaporn Jantarakongkul. (algorithm) ก ก. : ก {a i }=a 1,,a n a i N,

CS 344 Design and Analysis of Algorithms. Tarek El-Gaaly Course website:

Analysis of Algorithms

Lecture 2. Fundamentals of the Analysis of Algorithm Efficiency

CS 4407 Algorithms Lecture 2: Growth Functions

Define Efficiency. 2: Analysis. Efficiency. Measuring efficiency. CSE 417: Algorithms and Computational Complexity. Winter 2007 Larry Ruzzo

Asymptotic Notation. such that t(n) cf(n) for all n n 0. for some positive real constant c and integer threshold n 0

Running Time Evaluation

Measuring Goodness of an Algorithm. Asymptotic Analysis of Algorithms. Measuring Efficiency of an Algorithm. Algorithm and Data Structure

Recursion. Computational complexity

Data Structures and Algorithms. Asymptotic notation

EECS 477: Introduction to algorithms. Lecture 5

Defining Efficiency. 2: Analysis. Efficiency. Measuring efficiency. CSE 421: Intro Algorithms. Summer 2007 Larry Ruzzo

Algorithms Test 1. Question 1. (10 points) for (i = 1; i <= n; i++) { j = 1; while (j < n) {

An analogy from Calculus: limits

CIS 121 Data Structures and Algorithms with Java Spring Big-Oh Notation Monday, January 22/Tuesday, January 23

Assignment 5 Bounding Complexities KEY

COMPUTER ALGORITHMS. Athasit Surarerks.

Analysis of Algorithms [Reading: CLRS 2.2, 3] Laura Toma, csci2200, Bowdoin College

The Time Complexity of an Algorithm

Analysis of Algorithms

Big O Notation. P. Danziger

Math 391: Midterm 1.0 Spring 2016

Computational Complexity - Pseudocode and Recursions

3.1 Asymptotic notation

Cpt S 223. School of EECS, WSU

Copyright 2000, Kevin Wayne 1

Data Structures and Algorithms Running time and growth functions January 18, 2018

Enumerate all possible assignments and take the An algorithm is a well-defined computational

CSE332: Data Structures & Parallelism Lecture 2: Algorithm Analysis. Ruth Anderson Winter 2019

Describe an algorithm for finding the smallest integer in a finite sequence of natural numbers.

Topic 17. Analysis of Algorithms

Solutions. Problem 1: Suppose a polynomial in n of degree d has the form

CSE 417: Algorithms and Computational Complexity

The Time Complexity of an Algorithm

MA008/MIIZ01 Design and Analysis of Algorithms Lecture Notes 2

Asymptotic Analysis of Algorithms. Chapter 4

Algorithms, Design and Analysis. Order of growth. Table 2.1. Big-oh. Asymptotic growth rate. Types of formulas for basic operation count

Big O Notation. P. Danziger

CSCI 3110 Assignment 6 Solutions

CSE332: Data Structures & Parallelism Lecture 2: Algorithm Analysis. Ruth Anderson Winter 2018

CSE 421: Intro Algorithms. 2: Analysis. Winter 2012 Larry Ruzzo

CS1210 Lecture 23 March 8, 2019

Data Structures and Algorithms Chapter 2

CIS 121. Analysis of Algorithms & Computational Complexity. Slides based on materials provided by Mary Wootters (Stanford University)

CSE332: Data Structures & Parallelism Lecture 2: Algorithm Analysis. Ruth Anderson Winter 2018

Principles of Algorithm Analysis

Module 1: Analyzing the Efficiency of Algorithms

3 The Fundamentals:Algorithms, the Integers, and Matrices

LECTURE NOTES ON DESIGN AND ANALYSIS OF ALGORITHMS

Big-O Notation and Complexity Analysis

CSE 373: Data Structures and Algorithms Pep Talk; Algorithm Analysis. Riley Porter Winter 2017

Asymptotic Analysis. Slides by Carl Kingsford. Jan. 27, AD Chapter 2

CS 161 Summer 2009 Homework #2 Sample Solutions

CS 380 ALGORITHM DESIGN AND ANALYSIS

Asymptotic Algorithm Analysis & Sorting

Fall 2016 Test 1 with Solutions

data structures and algorithms lecture 2

CSC Design and Analysis of Algorithms. Lecture 1

Computer Algorithms CISC4080 CIS, Fordham Univ. Outline. Last class. Instructor: X. Zhang Lecture 2

Computer Algorithms CISC4080 CIS, Fordham Univ. Instructor: X. Zhang Lecture 2

Sorting. Chapter 11. CSE 2011 Prof. J. Elder Last Updated: :11 AM

Input Decidable Language -- Program Halts on all Input Encoding of Input -- Natural Numbers Encoded in Binary or Decimal, Not Unary

Reading 10 : Asymptotic Analysis

P, NP, NP-Complete, and NPhard

5 + 9(10) + 3(100) + 0(1000) + 2(10000) =

Analysis of Algorithms

Comp 11 Lectures. Mike Shah. July 26, Tufts University. Mike Shah (Tufts University) Comp 11 Lectures July 26, / 45

Performance and Scalability. Lars Karlsson

CS481: Bioinformatics Algorithms

Transcription:

CSCE 222 Discrete Structures for Computing David Kebo Houngninou Algorithms and Their Complexity Chapter 3

Algorithm An algorithm is a finite sequence of steps that solves a problem. Computational complexity How much computing resources are needed to solve a problem? How long (time) and how much memory (space) does it take? We observe the behavior of algorithms as the input size grows Houngninou CSCE 222 Discrete Structures for Computing 3 We are interested in: Algorithm The behavior of algorithms as the input size grows. Modeling a problem and an algorithm mathematically Analyzing the growth of functions (as argument grows without bound) The complexity of algorithms Houngninou CSCE 222 Discrete Structures for Computing 4

Modeling a Problem Translate a real-world problem into a mathematical context. e.g. Sorting a set of social security numbers and sorting a set of temperatures are both special cases of sorting a set of elements from a totally ordered set. Houngninou CSCE 222 Discrete Structures for Computing 5 Algorithms Algorithms can be described in English or in pseudocode. Pseudocode is an intermediate step between an English description of the steps and the implementation of these steps in code. Advantages of pseudocode: - Independent of the programming language - More general than a specific programming language Houngninou CSCE 222 Discrete Structures for Computing 6

Properties of algorithms Input: An algorithm has input values from a specified set. Output: An algorithm produces output values from a specified set. The output values are the solution. Definiteness: The steps of an algorithm must be properly defined. Correctness: An algorithm should produce the correct output values for each set of input values. Finiteness: An algorithm should produce the output after a finite number of steps for any input. Effectiveness: It must be possible to perform each step of the algorithm correctly and in a finite amount of time. Generality: The algorithm should work for all problems of the desired form. Houngninou CSCE 222 Discrete Structures for Computing 7 Maximum-Finding Algorithm Find the maximum of sequence: a 1, a 2,..., a n : 1: 2: 3: 4: 5: 6: 7: max a 1 for i 2...n do if max < a i then max a i end if end for return max Houngninou CSCE 222 Discrete Structures for Computing 8

Activity Does the maximum-finding algorithm have the desired properties of an algorithm? Houngninou CSCE 222 Discrete Structures for Computing 9 The Searching Problem Input: list of elements a 1, a 2,..., a n and a particular element x Output: return the index in the list where x appears; if x is not in the list then return 0 For now, assume all the list elements are unique. Houngninou CSCE 222 Discrete Structures for Computing 10

Linear Search Algorithm Input: a 1, a 2,..., a n and x 1: 2: 3: 4: 5: 6: 7: 8: 9: i 1 while i n and x a i i i + 1 end while if i n then return i else return 0 end if do Houngninou CSCE 222 Discrete Structures for Computing 11 Linear Search Algorithm Linear search can be slow: if x is not in the list or is toward the end, we have to check all (or most) of the elements in the list. Informally, we can see that the running time is proportional to the number of elements in the list Houngninou CSCE 222 Discrete Structures for Computing 12

Binary Search Example Search for 19 in the list: 1 2 3 5 6 7 8 10 12 13 15 16 18 19 20 22 Compare 19 with the element roughly in the middle 1 2 3 5 6 7 8 10 12 13 15 16 18 19 20 22 Since 19 > 10, ignore the first half of the list 12 13 15 16 18 19 20 22 Since 19 > 16, ignore the first half of the list 18 19 20 22 Found! Houngninou CSCE 222 Discrete Structures for Computing 13 Binary Search Algorithm Input: sorted list stored in array A[1... n] and x 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: i 1; j n //endpoints of the interval while i < j do m!"# //approx. middle of the interval $ if x > A[m] then i m + 1 //increase left end of the interval else j m //decrease right end of the interval end if end while if x = A[i] then return i else return 0 Houngninou CSCE 222 Discrete Structures for Computing 14

Binary Search Algorithm Let n be the size of the list Every iteration of the while loop reduces the size of the search interval by a factor of 2 After about log 2 n iterations, the search interval consists of just a single list element The running time is proportional to the logarithm of the size of the list Houngninou CSCE 222 Discrete Structures for Computing 15 Exponent vs. Logarithm Exponent: how many times a number is used in a multiplication. 2 2 2 = 8= 2 3 Logarithm: how many of one number to multiply to get another number. log 2 (8) = 3 base exponent 2 3 = 8 log 2 (8) = 3 base exponent log a (a b )=b y = a x x y x = log a (y) Houngninou CSCE 222 Discrete Structures for Computing 16

The Sorting Problem Input: list of elements a 1, a 2,..., a n drawn from totally ordered set (supports < operation) Output: list of elements b 1, b 2,..., b n that is a rearrangement of the input list such that b 1 < b 2 <... < b n. Assume all the list elements are unique. Houngninou CSCE 222 Discrete Structures for Computing 17 Bubble Sort Algorithm Bubble sort makes multiple passes through a list. Every pair of elements that are found to be out of order are interchanged.

Bubble Sort Algorithm Input: array A[1..n] of elements 1: 2: 3: 4: 5: for i:=1 to n 1 for j:=1 to n i if a j > a j+1 then interchange a j and a j+1 end for end for {a 1,, a n is now in increasing order} Houngninou CSCE 222 Discrete Structures for Computing 19 Bubble Sort e.g. Steps of bubble sort with: {3, 2, 4, 1, 5} At the first pass the largest element is put into the correct position At the end of the 2 nd pass, put the 2 nd largest element in the correct position In each subsequent pass, an additional element is put in the correct position

Insertion Sort Algorithm Assume input list is provided in an array. We repeatedly increase the prefix of the array that is in sorted order. 1. Take the next element x from the not-yet-sorted suffix of the array 2. Find the correct location for x in the sorted prefix of the array 3. Shift to make room for x in the sorted prefix and insert x in its place. Houngninou CSCE 222 Discrete Structures for Computing 21 Input: array A[1..n] of elements 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: for j 2...n do // j is index where unsorted suffix starts m A[j] // A[j] holds next element to insert i 1 while (m>a[i]) // Use linear search to find m s place i i+1 // i is the index where m should go! end while for k j...i+1 do A[k] := A[k 1] // shift places to make room for m end for A[i] m // Insert m in its place end for return A Houngninou CSCE 222 Discrete Structures for Computing 22

Activity Sort a list of numbers using insertion sort Original list: 45 23 26 44 55 32 10 84 Use one row to show the list after each pass through the algorithm. Houngninou CSCE 222 Discrete Structures for Computing 23 Insertion Sort Algorithm The runtime depends on the initial order of the array, and how much shifting is required Soon we will learn techniques for showing that the runtime is proportional to n 2 in the worst case Houngninou CSCE 222 Discrete Structures for Computing 24

Estimating Algorithm Runtime How to describe the runtime? As a function of the input size Different inputs, even of the same length, might take different amounts of time The runtime depends on: 1. The programming language 2. The compiler 3. The hardware 4. The level of multiprogramming Houngninou CSCE 222 Discrete Structures for Computing 25 Asymptotic Analysis Houngninou CSCE 222 Discrete Structures for Computing 26

Asymptotic Analysis Informally, measure time as a function of input size: 1. ignore multiplicative constants 2. ignore lower order terms Focus on the behavior as the input size grows to infinity. As the input size increases, the impact of multiplicative constants and lower order terms becomes negligible! Houngninou CSCE 222 Discrete Structures for Computing 27 Activity Suppose that an algorithm, running on an input of size n, takes 4n 2 + 1000n + 904 instructions. As n grows which term dominates the growth? Why? Houngninou CSCE 222 Discrete Structures for Computing 28

Big-O Notation O() Big-O is how to do the asymptotic analysis. Definition: Let f and g be functions. f(x) is O(g(x)) if there are constants C and k such that: f x C g x whenever x > k This is read as f(x) is big-o of g(x) Big-O Estimates for Polynomials Let where a 0, a 1, a n are real numbers with a n 0. The leading term a n x n of a polynomial dominates the growth. Therefore f(x) is O(x n )

Big-O Example Show that f(x) = x 2 + 2x + 1 is O(x 2 ) Find a positive C and k such that: x 2 + 2x + 1 C.x 2 for all x > k x 2 increases faster than 2x + 1 Let s try using four x 2 terms, i.e. C = 4 How big must x be to ensure that x 2 + 2x + 1 4x 2? k = 1 Houngninou CSCE 222 Discrete Structures for Computing 31 Big-O Example Show that n 2 is not O(n). We have to show that all pairs of C and k fail. Let s try a proof by contradiction: Suppose there is C and k n 2 C.n for all n > k. Divide both sides by n to get: n C for all n > k. C is a constant and eventually some value of n exceeds C This is a contradiction! Houngninou CSCE 222 Discrete Structures for Computing 32

Big-O Let f(x)= a n x n +...+ a 1 x + a 0. Then f(x) is O(x n ) Proof: f(x) a n x n + a n 1 x n 1 +... + a 1 x + a 0 = x n ( a n + an 1 x n +... + a 1 x n 1 + a 0 x n ) x n ( a n + a n 1 + + a 1 + a 0 ) as long as x > 1 Set k = 1 and C = a n + a n 1 +... a 1 + a 0 Houngninou CSCE 222 Discrete Structures for Computing 33 More Big-O examples 1. Sum of first n positive integers: 1 +2 +3 +... +n n + n + n +... n n 2, which is O(n 2 ) 2. Factorial function: n! = 1 2 3 (n 1) n n n n n n = n n, which is O(n n ) 3. Logarithm (base 2) of factorial: log(n!) log(n n ) = n log n, which is O(n log n) Houngninou CSCE 222 Discrete Structures for Computing 34

Growth of Functions Note the difference in behavior of functions as n gets larger Combinations of Functions If f 1 (x) is O(g 1 (x)) and f 2 (x) is O(g 2 (x)) then: ( f 1 + f 2 )(x) is O(max( g 1 (x), g 2 (x) )) If f 1 (x) and f 2 (x) are both O(g(x)) then: ( f 1 + f 2 )(x) is O(g(x)) If f 1 (x) is O(g 1 (x)) and f 2 (x) is O(g 2 (x)) then: ( f 1. f 2 )(x) is O(g 1 (x).g 2 (x))

Activity What are the Big-Oh estimates for these functions? f(n) = (n 2 + 8)(n + 1) f(n) = (n! + 2 n ) (n 3 + log(n 2 + 1)) Houngninou CSCE 222 Discrete Structures for Computing 37 Upper and Lower Bounds Big-Oh gives us upper bounds on functions: if f(x) is O(g(x)), then the value of f(x) is at most the value of g(x) (for large enough x) If we want to know a lower bound on a function? This is done with the Big-Omega notation! Houngninou CSCE 222 Discrete Structures for Computing 38

Big-Omega Notation Ω() f(x) is Big-Omega of a function g(x) if there are positive constants C and k such that f(x) C g(x) for all x > k. Notation: f(x) Ω(g(x)) or f(x) = Ω(g(x)). e.g. f(x) = 8x 3 + 5x 2 + 7 is Ω(x 3 ). Verify with C=1 and k=1 note: f(x) is Ω(g(x)) if and only if g(x) is O(f(x)). Houngninou CSCE 222 Discrete Structures for Computing 39 Big-Omega Example Let s find a lower bound on the sum of the first n positive integers. Assume n is even. % "#$ & = 1 + 2 + 3 +... + (n-1) + n > ( % ' + 1) + (% ' + 2) + + (n-1) + n > % ' + % ' + + % ' + % ' = % '. % ' = %( ) Houngninou CSCE 222 Discrete Structures for Computing 40

Big-Theta Notation Θ() What if a function f(x) is both O(g(x)) and Ω(g(x))? f(x) is Big-Theta of function g(x) if: f(x) is O(g(x)) and f(x) is Ω(g(x)) Notation: f(x) Θ(g(x)) or f(x) = Θ(g(x)) The behavior of f is lying between an upper bound and lower bound that are asymptotically equal. This is a tight bound. Informally, f = g. Houngninou CSCE 222 Discrete Structures for Computing 41 Big-Theta Example The sum of the first n positive integers is O(n 2 ) The sum of the first n positive integers is Ω(n 2 ) Therefore, the sum of the first n positive integers is Θ(n 2 ) Houngninou CSCE 222 Discrete Structures for Computing 42

The Complexity of Algorithms How efficient is an algorithm for a given input size? How much time does an algorithm use to solve a problem? How much computer memory does an algorithm use to solve a problem? When we analyze the time an algorithm uses, we study the time complexity of the algorithm. When we analyze the computer memory the algorithm uses, we study the space complexity of the algorithm. The Complexity of Algorithms Let s us the last two topics, Algorithms and Asymptotic Analysis, to analyze time complexity of algorithms We will measure time complexity as the number of operations executed Simplifying Assumption: All operations take the same amount of time. Why? Operations might vary by a constant (e.g., a division might take 4 times as long as an addition on some hardware), but we ignore constant factors.

Time Complexity Maximum Finding Algorithm: O(n) 1. 2. 3. 4. 5. 6. 7. max a 1 for i 2...n do if max < a i then max a i end if end for return max 1: assign (1 op) 2: add, assign, test n times (3n ops) 3: 1 compare per iteration (n - 1 ops) 4: at most 1 assign per iteration ( n-1 ops) 7: return (1 op) Total is at most 1 + 3n + 2(n 1) + 1 = 5n = O(n) Houngninou CSCE 222 Discrete Structures for Computing 45 Time Complexity Linear Search Algorithm: O(n) 1. 2. 3. 4. 5. 6. 7. 8. 9. i 1 while i n and x a i do i i + 1 end while if i n then return i else return 0 end if 1: assign (1 op) 2:,, and at most n+1 times ( 3(n + 1) ops) 3: add, assign at most n times ( 2n ops) 5-8: compare, return (2 ops) Total is at most 1 + 3(n + 1) + 2n + 2 = 5n + 6 = O(n) Houngninou CSCE 222 Discrete Structures for Computing 46

1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. i 1; j n while i < j do m "#$ % if x > A[m] then i m+1 else j m end if end while if x = A[i] then Time Complexity Binary search: O(log n) return i else return 0 1: assign (2 ops) 2: compare x + 1 times (x to be determined) 3: 4 ops x times (4x ops) 4-8: at most 3 ops x times ( 3x ops) 10-11: (2 ops) Total is at most 2 + (x + 1) + 4x + 3x + 2 = 8x + 5. What is x? Houngninou CSCE 222 Discrete Structures for Computing 47 Behavior of Binary Search How many iterations of the while loop are there? n: # of elements in the list Assume n is a power of 2, n = 2 k k = log 2 n At each iteration, i increases or j decreases Iteration 1, j - i =!"! = 2 k-1 Iteration 2, j - i =!"#$! = 2 k-2 Iteration 3, j - i =!"#% = 2 k-3! How many iterations until i j (stopping condition of while)? After k iterations, j - i = 2 0, so after one more i j Thus x = k + 1 = log 2 n + 1 Houngninou CSCE 222 Discrete Structures for Computing 48

Time Complexity Optimized Insertion Sort O(n 2 ) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. for j 2... n do m A[j] i j - 1 while (i >0) (A[i] > m) A[i + 1] A[i] i i - 1 end while A[i + 1] m end for return A 1: test n times, each test takes 2 ops (2n ops) 2: 2 ops per for-loop iteration (2(n 1) ops) 3: 2 ops per for-loop iteration (2(n 1) ops) 4: test on a variable number of times, 3 ops per test. 5: 2 ops per while-loop iteration 6: 2 ops per while-loop iteration 8: 2 ops per for-loop iteration (2n ops) 10: 1 op Houngninou CSCE 222 Discrete Structures for Computing 49 Common Terminologies Constant Complexity: O(1) Running time is independent of the input size e.g. return the first element of a list Logarithmic Complexity: O(log n) e.g. binary search Linear Complexity: O(n) e.g. linear search Quadratic Complexity: O(n 2 ) e.g. insertion sort Polynomial Complexity: O(n b ) for some constant b e.g. all of the above Exponential Complexity: O(b n ) for some constant b e.g. generate the powerset of some input set of n elements Houngninou CSCE 222 Discrete Structures for Computing 50

Sorting Algorithms Time Complexity Best Worst Selection Sort Ω(n 2 ) O(n 2 ) Bubble Sort Ω(n) O(n 2 ) Insertion Sort Ω(n) O(n 2 ) Heap Sort Ω(n log(n)) O(n log(n)) Quick Sort Ω(n log(n)) O(n 2 ) Merge Sort Ω(n log(n)) O(n log(n)) Bucket Sort Ω(n + k) O(n 2 ) Radix Sort Ω(nk) O(nk) Houngninou CSCE 222 Discrete Structures for Computing 51 Sources Discrete Mathematics and its Applications, Seventh Edition, by Kenneth H. Rosen, and accompanying slides Houngninou CSCE 222 Discrete Structures for Computing 52