Data Structures and Algorithms. Asymptotic notation

Similar documents
Asymptotic Analysis of Algorithms. Chapter 4

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

Analysis of Algorithms

Lecture 2: Asymptotic Analysis of Algorithms

Ch01. Analysis of Algorithms

Ch 01. Analysis of Algorithms

Principles of Algorithm Analysis

Lecture 2. Fundamentals of the Analysis of Algorithm Efficiency

The Time Complexity of an Algorithm

Analysis of Algorithms

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

The Time Complexity of an Algorithm

Analysis of Algorithm Efficiency. Dr. Yingwu Zhu

Growth of Functions (CLRS 2.3,3)

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

MA008/MIIZ01 Design and Analysis of Algorithms Lecture Notes 2

3.1 Asymptotic notation

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

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

Lecture 10: Big-Oh. Doina Precup With many thanks to Prakash Panagaden and Mathieu Blanchette. January 27, 2014

Running Time Evaluation

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

EECS 477: Introduction to algorithms. Lecture 5

Fundamentals of Programming. Efficiency of algorithms November 5, 2017

Algorithm efficiency can be measured in terms of: Time Space Other resources such as processors, network packets, etc.

Computational Complexity

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

COMP 9024, Class notes, 11s2, Class 1

CS 4407 Algorithms Lecture 2: Growth Functions

Analysis of Algorithms

Md Momin Al Aziz. Analysis of Algorithms. Asymptotic Notations 3 COMP Computer Science University of Manitoba

What is Performance Analysis?

Asymptotic Analysis 1

CSC Design and Analysis of Algorithms. Lecture 1

csci 210: Data Structures Program Analysis

with the size of the input in the limit, as the size of the misused.

csci 210: Data Structures Program Analysis

CS Non-recursive and Recursive Algorithm Analysis

Analysis of Algorithms

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

Cpt S 223. School of EECS, WSU

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

data structures and algorithms lecture 2

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

Module 1: Analyzing the Efficiency of Algorithms

Algorithms Design & Analysis. Analysis of Algorithm

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

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

Lecture 1: Asymptotic Complexity. 1 These slides include material originally prepared by Dr.Ron Cytron, Dr. Jeremy Buhler, and Dr. Steve Cole.

When we use asymptotic notation within an expression, the asymptotic notation is shorthand for an unspecified function satisfying the relation:

P, NP, NP-Complete, and NPhard

Lecture 2: Asymptotic Notation CSCI Algorithms I

Written Homework #1: Analysis of Algorithms

Grade 11/12 Math Circles Fall Nov. 5 Recurrences, Part 2

COMP Analysis of Algorithms & Data Structures

CS473 - Algorithms I

Lecture 1: Asymptotics, Recurrences, Elementary Sorting

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

Design and Analysis of Algorithms

COMP Analysis of Algorithms & Data Structures

Time complexity analysis

Algorithms and Their Complexity

Asymptotic Analysis Cont'd

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

Data Structures and Algorithms Chapter 2

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

CISC 235: Topic 1. Complexity of Iterative Algorithms

i=1 i B[i] B[i] + A[i, j]; c n for j n downto i + 1 do c n i=1 (n i) C[i] C[i] + A[i, j]; c n

Data Structures and Algorithms

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

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

When we use asymptotic notation within an expression, the asymptotic notation is shorthand for an unspecified function satisfying the relation:

More Asymptotic Analysis Spring 2018 Discussion 8: March 6, 2018

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

Analysis of Algorithms Review

CS 310 Advanced Data Structures and Algorithms

Big O (Asymptotic Upper Bound)

Introduction to Algorithms and Asymptotic analysis

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

Analysis of Algorithms I: Asymptotic Notation, Induction, and MergeSort

2.2 Asymptotic Order of Growth. definitions and notation (2.2) examples (2.4) properties (2.2)

Module 1: Analyzing the Efficiency of Algorithms

Big-O Notation and Complexity Analysis

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

COMP 382: Reasoning about algorithms

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

Mathematical Background. Unsigned binary numbers. Powers of 2. Logs and exponents. Mathematical Background. Today, we will review:

The Growth of Functions and Big-O Notation

Theory of Computation

Agenda. We ve discussed

Data structures Exercise 1 solution. Question 1. Let s start by writing all the functions in big O notation:

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

2. ALGORITHM ANALYSIS

Theory of Computation

Algorithm Analysis, Asymptotic notations CISC4080 CIS, Fordham Univ. Instructor: X. Zhang

CSE 417: Algorithms and Computational Complexity

CSE 101. Algorithm Design and Analysis Miles Jones Office 4208 CSE Building Lecture 1: Introduction

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

Computational Complexity - Pseudocode and Recursions

Transcription:

Data Structures and Algorithms Asymptotic notation

Estimating Running Time Algorithm arraymax executes 7n 1 primitive operations in the worst case. Define: a = Time taken by the fastest primitive operation b = Time taken by the slowest primitive operation Let T(n) be worst-case time of arraymax. Then a (7n 1) T(n) b(7n 1) Hence, the running time T(n) is bounded by two linear functions Analysis of Algorithms 18

Growth Rate of Running Time Changing the hardware/ software environment Affects T(n) by a constant factor, but Does not alter the growth rate of T(n) Thus we focus on the big-picture which is the growth rate of an algorithm The linear growth rate of the running time T(n) is an intrinsic property of algorithm arraymax algorithm arraymax grows proportionally with n, with its true running time being n times a constant factor Analysis that depends of Algorithms on the 19 specific

Constant Factors The growth rate is not affected by constant factors or lower-order terms Examples 10 2 n + 10 5 is a linear function 10 5 n 2 + 10 8 n is a quadratic function How do we get rid of the constant factors to focus on the essential part of the running time? Analysis of Algorithms 20

Big-Oh Notation Motivation The big-oh notation is used widely to characterize running times and space bounds The big-oh notation allows us to ignore constant factors and lower order terms and focus on the main components of a function which affect its growth Analysis of Algorithms 21

Big-Oh Notation Definition Given functions f(n) and g(n), we say that f(n) is O(g(n)) if there are positive constants c and n 0 such that f(n) cg(n) for n n 0 Example: 2n + 10 is O(n) 2n + 10 cn (c 2) n 10 n 10/(c 2) Pick c = 3 and n0 = 10 80 70 60 50 40 30 20 10 3n 2n+ 10 0 0 5 10 15 20 25 30 Analysis of Algorithms 22 n n

Big-Oh Example Example: the function n 2 is not O(n) n 2 cn n c 100,000 90,000 80,000 70,000 60,000 50,000 40,000 30,000 20,000 10,000 0 n^2 100n The above inequality cannot be satisfied since c must be a constant 0 100 200 300 400 500 10n n n Analysis of Algorithms 23

More Big-Oh Examples 7n-2 7n-2 is O(n) need c > 0 and n 0 1 such that 7n-2 c n for n n 0 this is true for c = 7 and n 0 = 1 3n 3 + 20n 2 + 5 3n 3 + 20n 2 + 5 is O(n 3 ) need c > 0 and n 0 1 s.t. 3n 3 + 20n 2 + 5 c n 3 for n n 0 this is true for c = 4 and n 0 = 21 3 log n + 5 3 log n + 5 is O(log n) need c > 0 and n 0 1 s.t. 3 log n + 5 c log n for n n 0 this is true for c = 8 and n 0 = 2 Analysis of Algorithms 24

Big-Oh and Growth Rate The big-oh notation gives an upper bound on the growth rate of a function The statement f(n) is O(g(n)) means that the growth rate of f(n) is no more than the growth rate of g(n) We can use the big-oh notation to rank functions according to their growth rate g(n) grows more f(n) is O(g(n)) Yes g(n) is O(f(n)) No f(n) grows more No Yes Same growth Yes Yes Analysis of Algorithms 25

Big-Oh Rules If is f(n) a polynomial of degree d, then f(n) is O(n d ), i.e., 1. Drop lower-order terms 2. Drop constant factors Use the smallest possible class of functions Say 2n is O(n) instead of 2n is O(n 2 ) Use the simplest expression of the class Say 3n + 5 is O(n) instead of 3n + 5 is O(3n) Analysis of Algorithms 26

Big-Oh Rules If is f(n) a polynomial of degree d, then f(n) is O(n d ), i.e., 1. Drop lower-order terms 2. Drop constant factors Use the smallest possible class of functions Say 2n is O(n) instead of 2n is O(n 2 ) Use the simplest expression of the class Say 3n + 5 is O(n) instead of 3n + 5 is O(3n) Analysis of Algorithms 27

Asymptotic Algorithm Analysis The asymptotic analysis of an algorithm determines the running time in big-oh notation To perform the asymptotic analysis We find the worst-case number of primitive operations executed as a function of the input size We express this function with big-oh notation Example: We determine that algorithm arraymax executes at most 7n 1 primitive operations We say that algorithm arraymax runs in O(n) time Since constant factors and lower-order terms are eventually dropped anyhow, we can disregard them when counting primitive operations Analysis of Algorithms 28

Seven Important Functions Seven functions that often appear in algorithm analysis: Constant 1 Logarithmic log n Linear n N-Log-N n log n Quadratic n 2 Cubic n 3 Exponential 2 n In a log-log chart, the slope of the line corresponds to the growth rate of the function T(n) 1E+30 1E+27 1E+24 1E+21 1E+18 1E+15 1E+12 1E+9 1E+6 1E+3 Cubic Quadratic Linear 1E+0 1E+0 1E+2 1E+4 n 1E+6 1E+8 1E+10 Analysis of Algorithms 29

Computing Prefix Averages We further illustrate asymptotic analysis with two algorithms for prefix averages The i-th prefix average of an array X is average of the first (i + 1) elements of X: A[i] = (X[0] + X[1] + + X[i])/ (i+1) Computing the array A of prefix averages of 10 another array X has applications to financial analysis Analysis of Algorithms 30 35 30 25 20 15 X A

Prefix Averages (Quadratic) The following algorithm computes prefix averages in quadratic time by applying the definition Algorithm prefixaverages1(x, n) Input array X of n integers Output array A of prefix averages of X #operations A new array of n integers n for i 0 to n 1 do n s X[0] n for j 1 to i do 1 + 2 + + (n 1) s s + X[j] 1 + 2 + + (n 1) A[i] s / (i + 1) n return A 1 Analysis of Algorithms 31

Arithmetic Progression The running time of prefixaverages1 is O(1 + 2 + + n) The sum of the first n integers is n(n + 1) / 2 There is a simple visual proof of this fact Thus, algorithm prefixaverages1 runs in 1 O(n 2 ) time 0 7 6 5 4 3 2 1 2 3 4 5 6 Analysis of Algorithms 32

Prefix Averages (Linear) The following algorithm computes prefix averages in linear time by keeping a running sum Algorithm prefixaverages2(x, n) Input array X of n integers Output array A of prefix averages of X #operations A new array of n integers n s 0 1 for i 0 to n 1 do n s s + X[i] n A[i] s / (i + 1) n return A 1 Algorithm prefixaverages2 runs in O(n) time Analysis of Algorithms 33

More Examples Algorithm SumTripleArray(X, n) Input triple array X[ ][ ][ ] of n by n by n integers Output sum of elements of X #operations s 0 1 for i 0 to n 1 do n for j 0 to n 1 do n+n+ +n=n 2 for k 0 to n 1 do n 2 +n 2 + +n 2 = n 3 s s + X[i][j][k] n 2 +n 2 + +n 2 = n 3 return s 1 Algorithm SumTripleArray runs in O(n 3 ) time Analysis of Algorithms 34

Useful Big-Oh Rules If is f(n) a polynomial of degree d, then f(n) is O(n d ) f (n )=a 0 +a 1 n+a 2 n 2 +...+a d n d If d(n) is O(f(n)) and e(n) is O(g(n)) then d(n)+e(n) is O(f(n)+g(n)) d(n)e(n) is O(f(n) g(n)) If d(n) is O(f(n)) and f(n) is O(g(n)) then d(n) is O(g(n)) If p(n) is a polynomial in n then log p(n) is O(log(n)) Analysis of Algorithms 35

Relatives of Big-Oh big-omega f(n) is Ω(g(n)) if there is a constant c > 0 and an integer constant n 0 1 such that f(n) c g(n) for n n 0 big-theta f(n) is Θ(g(n)) if there are constants c > 0 and c > 0 and an integer constant n 0 1 such that c g(n) f(n) c g(n) for n n 0 Analysis of Algorithms 36

Intuition for Asymptotic Notation Big-Oh f(n) is O(g(n)) if f(n) is asymptotically less than or equal to g(n) big-omega f(n) is Ω(g(n)) if f(n) is asymptotically greater than or equal to g(n) Note that f(n) is Ω(g(n)) if and only if g(n) is O(f(n)) big-theta f(n) is Θ(g(n)) if f(n) is asymptotically equal to g(n) Note that f(n) is Θ(g(n)) if and only if if g(n) is O(f(n)) and if f(n) is O(g(n)) Analysis of Algorithms 37

Example Uses of the Relatives of Big-Oh 5n 2 is Ω(n 2 ) f(n) is Ω(g(n)) if there is a constant c > 0 and an integer constant n 0 1 such that f(n) c g(n) for n n 0 let c = 5 and n 0 = 1 5n 2 is Ω(n) f(n) is Ω(g(n)) if there is a constant c > 0 and an integer constant n 0 1 such that f(n) c g(n) for n n 0 let c = 1 and n 0 = 1 5n 2 is Θ(n 2 ) f(n) is Θ(g(n)) if it is Ω(n 2 ) and O(n 2 ). We have already seen the former, for the latter recall that f(n) is O(g(n)) if there is a constant c > 0 and an integer constant n 0 1 such that f(n) < c g(n) for n n 0 Let c = 5 and n 0 = 1 Analysis of Algorithms 38

Math you need to Review Summations Logarithms and Exponents properties of logarithms: log b (xy) = log b x + log b y log b (x/y) = log b x - log b y log b xa = alog b x log b a = log x a/log x b properties of exponentials: a (b+c) = a b a c a bc = (a b ) c a b /a c = a (b-c) b = a log a b b c = a c*log a b Analysis of Algorithms 39

Final Notes Even though in this course we focus on the asymptotic growth using big-oh notation, practitioners do care about constant factors occasionally Suppose we have 2 algorithms Algorithm A has running time 30000n Algorithm B has running time 3n 2 Asymptotically, algorithm A is better than algorithm B However, if the problem size you deal with is always less than 10000, then the quadratic one is faster Running time A B problem size Analysis of Algorithms 40