SlideShare a Scribd company logo
1 of 29
Analysis of Algorithms The Non-recursive Case Except as otherwise noted, the content of this presentation is licensed under the Creative Commons Attribution 2.5 License.
Key Topics: ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Why Analyze Algorithms? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Generalizing Running Time Comparing the growth of the running time as the input grows to the growth of known functions. 10 3000 10 12 10 8 10 5 10000 13 1 10000 10 300 10 9 10 6 10 4 1000 10 1 1000 10 30 10 6 10 4 664 100 7 1 100 10ยณ 10ยณ 100 33 10 4 1 10 32 125 25 15 5 3 1 5 2โฟ nยณ nยฒ n log n  n log n (1) Input Size: n
Analyzing Running Time 1. n = read input from user 2. sum = 0 3. i = 0 4. while i < n  5. number = read input from user 6. sum = sum + number 7. i = i + 1 8. mean = sum / n T(n), or the running time of a particular algorithm on input of size n, is taken to be the number of times the instructions in the algorithm are executed. Pseudo code algorithm illustrates the calculation of the mean (average) of a set of n numbers: Statement Number of times executed 1 1 2 1 3 1 4 n+1 5 n 6 n 7 n 8 1 The computing time for this algorithm in terms on input size n is: T(n) = 4n + 5.
Big-Oh Notation Definition 1 : Let f(n) and g(n) be two functions.  We write: f(n) = O(g(n))  or  f = O(g) (read &quot;f of n is big oh of g of n&quot; or &quot;f is big oh of g&quot;) if there is a positive integer C such that f(n) <= C * g(n) for all positive integers n. The basic idea of big-Oh notation is this: Suppose f and g are both real-valued functions of a real variable x. If, for large values of x, the graph of f lies closer to the horizontal axis than the graph of some multiple of g, then f is of order g, i.e., f(x) = O(g(x)). So, g(x) represents an  upper bound  on f(x).
Example 1 ,[object Object],[object Object],[object Object],Therefore, a constant C exists (we only need one) and f = O(g).
Example 2 In the previous timing analysis, we ended up with T(n) = 4n + 5, and we concluded intuitively that T(n) = O(n) because the running time grows linearly as n grows.  Now, however, we can prove it mathematically: To show that f(n) = 4n + 5 = O(n), we need to produce a constant C such that: f(n) <= C * n for all n. If we try C = 4, this doesn't work because 4n + 5 is not less than 4n.  We need C to be at least 9 to cover  all  n.  If n = 1, C has to be 9, but C can be smaller for greater values of n (if n = 100, C can be 5).  Since the chosen C must work for all n, we must use 9: 4n + 5 <= 4n + 5n = 9n Since we have produced a constant C that works for all n, we can conclude: ๏”๏€จ๏€ด๏ฎ๏€ ๏€ซ๏€ ๏€ต๏€ฉ๏€ ๏€ฝ๏€ ๏๏€จ๏ฎ๏€ฉ
Example 3 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],f(n)  ๏‚น๏€  O(n) when f(n)  ๏€ฝ ๏€  n2
Example 4 Suppose f(n) = n 2   + 3n - 1.  We want to show that f(n) = O(n 2 ). f(n)  = n 2  + 3n - 1 < n 2  + 3n  (subtraction makes things smaller so drop it) <= n 2  + 3n 2  (since n <= n 2  for all integers n)   = 4n 2 Therefore, if C = 4, we have shown that f(n) = O(n 2 ).  Notice that all we are doing is finding a simple function that is an upper bound on the original function.  Because of this, we could also say that This would be a much weaker description, but it is still valid. f(n) = O(n 3 ) since (n 3 ) is an upper bound  on n2
Example 5 Show:  f(n) = 2n 7  - 6n 5  + 10n 2  โ€“ 5 = O(n 7 ) f(n) < 2n 7  + 6n 5  + 10n 2 <= 2n 7  + 6n 7  + 10n 7 = 18n 7 thus, with  C = 18  and we have shown that  f(n) = O(n 7 ) Any polynomial is big-Oh of its  term of highest degree .  We are also ignoring constants. Any polynomial (including a general one) can be manipulated to satisfy the big-Oh definition by doing what we did in the last example: take the absolute value of each coefficient (this can only increase the function); Then since  we can change the exponents of all the terms to the highest degree (the original function must be less than this too).  Finally, we add these terms together to get the largest constant C we need to find a function that is an upper bound on the original one. n j   <=  n d   if j <= d
Adjusting the definition of big-Oh: Many algorithms have a rate of growth that matches logarithmic functions. Recall that log2 n is the number of times we have to divide n by 2 to get 1; or alternatively, the number of 2's we must multiply together to get n:    n = 2 k   ๏ƒ›   log 2  n = k Many &quot;Divide and Conquer&quot; algorithms solve a problem by dividing it into 2 smaller problems. You keep dividing until you get to the point where solving the problem is trivial.  This constant division by 2 suggests a logarithmic running time. Definition 2 : Let f(n) and g(n) be two functions.  We write: f(n) = O(g(n))  or  f = O(g) if there are positive integers C and N such that  f(n) <= C * g(n)  for all integers n >= N. Using this more general definition for big-Oh, we can now say that if we have f(n) = 1, then f(n) = O(log(n)) since C = 1 and N = 2 will work.
With this definition, we can clearly see the difference between the three types of notation: ,[object Object],There is a handy theorem that relates these notations: Theorem : For any two functions f(n) and g(n), f(n) =  ๏‘ (g(n)) if and only if f(n) = O(g(n)) and f(n) =  ๏—  (g(n)).
Example 6: Show:  f(n) = 3n 3  + 3n - 1 =  ๏‘  (n 3 ) As implied by the theorem above, to show this result, we must show two properties: f(n) = O (n 3 ) f(n) =  ๏—  (n 3 ) First, we show (i), using the same techniques we've already seen for big-Oh. We consider N = 1, and thus we only consider n >= 1 to show the big-Oh result. f(n) = 3n 3  + 3n - 1 < 3n 3  + 3n + 1   <= 3n 3  + 3n 3  + 1n 3 = 7n 3 thus, with  C = 7 and N = 1  we have shown that  f(n) = O(n 3 )
Next, we show (ii).  Here we must provide a lower bound for  f(n).   Here, we choose a value for N, such that the highest order term in  f(n)  will always dominate (be greater than) the lower order terms.  We choose  N = 2 , since for  n >=2 , we have  n3 >= 8 .  This will allow  n 3  to be larger than the remainder of the polynomial  (3n - 1) for all n >= 2.   So, by subtracting an extra n 3  term, we will form a polynomial that will always be less than  f(n) for n >= 2 . f(n) = 3n 3  + 3n - 1 > 3n 3  - n3  since n 3  > 3n - 1 for any n >= 2 = 2n 3 Thus, with  C = 2  and  N = 2 , we have shown that  f(n) =  ๏—  (n 3 ) since  f(n)  is shown to always be greater than  2n 3 .
Big-Oh Operations Summation Rule Suppose T1(n) = O(f1(n)) and T2(n) = O(f2(n)).  Further, suppose that f2 grows no faster than f1, i.e., f2(n) = O(f1(n)).  Then, we can conclude that T1(n) + T2(n) = O(f1(n)).  More generally, the summation rule tells us O(f1(n) + f2(n)) = O(max(f1(n), f2(n))). Proof :  Suppose that C and C' are constants such that T1(n) <= C * f1(n) and T2(n) <= C' * f2(n).  Let D = the larger of C and C'.  Then, T1(n) + T2(n) <=  C * f1(n)  + C' * f2(n) <=  D * f1(n) + D * f2(n) <=  D * (f1(n)  +  f2(n)) <=  O(f1(n)  +  f2(n))
Product Rule Suppose T1(n) = O(f1(n))  and T2(n) = O(f2(n)).  Then, we can conclude that T1(n) * T2(n) =  O(f1(n) * f2(n)).  The Product Rule can be proven using a similar strategy as the Summation Rule proof. ,[object Object],[object Object],[object Object],[object Object],[object Object]
Example 7 Compute the big-Oh running time of the following C++ code segment: for (i = 2; i < n; i++) { sum += i; } The number of iterations of a for loop is equal to the top index of the loop minus the bottom index, plus one more instruction to account for the final conditional test.  Note: if the for loop terminating condition is  i <= n , rather than  i < n , then the number of times the conditional test is performed is: ((top_index + 1) โ€“ bottom_index) + 1) In this case, we have  n - 2 + 1 = n - 1 . The assignment in the loop is executed  n - 2  times.  So, we have  (n - 1) + (n - 2) = (2n - 3)  instructions executed  = O(n).
Example 8 Consider the sorting algorithm shown below.  Find the number of instructions executed and the complexity of this algorithm. 1) for (i = 1; i < n; i++) { 2) SmallPos = i; 3) Smallest = Array[SmallPos]; 4) for (j = i+1; j <= n; j++)  5) if (Array[j] < Smallest) { 6) SmallPos = j; 7) Smallest  = Array[SmallPos] } 8) Array[SmallPos] = Array[i]; 9)  Array[i] = Smallest; } The total computing time is:  T(n)  = (n) + 4(n-1) + n(n+1)/2 โ€“ 1 + 3[n(n-1) / 2] = n  + 4n - 4 + (n 2  + n)/2 โ€“ 1 + (3n 2  - 3n) / 2 = 5n - 5 + (4n 2  - 2n) / 2 = 5n - 5 + 2n 2  - n = 2n 2  + 4n - 5  = O(n 2 )
Example 9 What is the complexity of this C++ code? 1) cin >> n; // Same as: n = GetInteger(); 2) for (i = 1; i <= n; i ++)  3) for (j = 1; j <= n; j ++)  4) A[i][j] = 0; 5) for (i = 1; i <= n; i ++)  6) A[i][i] = 1; The following program segment initializes a two-dimensional array A (which has n rows and n columns) to be an n x n identity matrix โ€“ that is, a matrix with 1โ€™s on the diagonal and 0โ€™s everywhere else.  More formally, if A is an n x n identity matrix, then: A x M = M x A = M, for any n x n matrix M.
Example 10 Here is a simple linear search algorithm that returns the index location of a value in an array. /* a is the array of size n we are searching through */ i = 0; while ((i < n) && (x != a[i])) i++; if (i < n) location = i;  else location = -1; 1 + 3 + 5 + ... + (2n - 1)  /  n = (2 (1 + 2 + 3 + ... + n) - n)  /  n We know that   1 + 2 + 3 + ... + n = n (n + 1) / 2,   so the average number of lines executed is: [2[n(n+1)/2] โ€“ n]/n =n  =O(n) Average number of lines executed equals:
Analyzing Programs with Non-Recursive Subprogram Calls ,[object Object],[object Object],[object Object],int a, n, x;  int bar(int x, int n) { int i; 1)  for (i = 1; i < n; i++)  2)  x = x + i; 3)  return x; } int foo(int x, int n) { int i; 4)  for (i = 1; i <= n; i++)  5)  x = x + bar(i, n); 6)  return x; } ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Here is the body of a function:   sum = 0;   for (i = 1; i <= f(n); i++)   sum += i; where f(n) is a function call.  Give a big-oh upper bound on this function if the running time of f(n) is O(n), and the  value  of f(n) is n!:
Classes of Problems ,[object Object],[object Object],[object Object],[object Object]
Problems, Problems, Problemsโ€ฆ Different sets of problems: ,[object Object],[object Object],[object Object],NP-Complete? Polynomial Exponential Undecidable
Two Famous Problems ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Polynomial Transformation Informally, if P 1   ๏‚ต  P 2 , then we can think of a solution to P 1  being obtained from a solution to P 2  in polynomial time.   The code below gives some idea of what is implied when we say P 1   ๏‚ต  P 2 :  Convert_To_P2 p1 = ... /*  Takes an instance of p1 and converts   it to an instance of P2 in polynomial    time.  */ Solve_P2 p2 = ... /*  Solves problem P2  */ Solve_P1 p1 = Solve_P2(Convert_To_P2 p1);
Given the above definition of a transformation, these theorems should not be very surprising: If  ๏ ๏€  1   ๏‚ต   ๏ ๏€  2  then    ๏ ๏€  2   ๏ƒŽ   P   ๏‚ฎ   ๏ ๏€  1   ๏ƒŽ   P If  ๏ ๏€  1   ๏‚ต   ๏ ๏€  2  then    ๏ ๏€  2   ๏ƒ ๏€    P   ๏‚ฎ๏€    ๏ ๏€  1   ๏ƒ ๏€    P These theorems suggest a technique for proving that a given problem  ๏  is NP-complete. To Prove  ๏๏€ ๏ƒŽ  NP:  1) Find a known NP-complete problem  ๏ NP 2) Find a transformation such that  ๏ NP   ๏‚ต๏€ ๏ 3) Prove that the transformation is polynomial.
The meaning of NP-Completeness A Statement of a Problem:  Solving a problem means finding one algorithm that will solve all instances of the problem. ๏€  ๏๏€ ๏ƒŽ๏€  ๏Ž๏ ๏€ฌ๏€ ๏๏€ ๏‚ต๏€ ๏“๏๏”

More Related Content

What's hot

DESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMSDESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMS
Gayathri Gaayu
ย 
how to calclute time complexity of algortihm
how to calclute time complexity of algortihmhow to calclute time complexity of algortihm
how to calclute time complexity of algortihm
Sajid Marwat
ย 
asymptotic analysis and insertion sort analysis
asymptotic analysis and insertion sort analysisasymptotic analysis and insertion sort analysis
asymptotic analysis and insertion sort analysis
Anindita Kundu
ย 

What's hot (20)

DESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMSDESIGN AND ANALYSIS OF ALGORITHMS
DESIGN AND ANALYSIS OF ALGORITHMS
ย 
chapter 1
chapter 1chapter 1
chapter 1
ย 
how to calclute time complexity of algortihm
how to calclute time complexity of algortihmhow to calclute time complexity of algortihm
how to calclute time complexity of algortihm
ย 
asymptotic analysis and insertion sort analysis
asymptotic analysis and insertion sort analysisasymptotic analysis and insertion sort analysis
asymptotic analysis and insertion sort analysis
ย 
Lecture 5: Asymptotic analysis of algorithms
Lecture 5: Asymptotic analysis of algorithmsLecture 5: Asymptotic analysis of algorithms
Lecture 5: Asymptotic analysis of algorithms
ย 
Complexity analysis in Algorithms
Complexity analysis in AlgorithmsComplexity analysis in Algorithms
Complexity analysis in Algorithms
ย 
Design and Analysis of algorithms
Design and Analysis of algorithmsDesign and Analysis of algorithms
Design and Analysis of algorithms
ย 
Fundamentals of the Analysis of Algorithm Efficiency
Fundamentals of the Analysis of Algorithm EfficiencyFundamentals of the Analysis of Algorithm Efficiency
Fundamentals of the Analysis of Algorithm Efficiency
ย 
Algorithms Lecture 2: Analysis of Algorithms I
Algorithms Lecture 2: Analysis of Algorithms IAlgorithms Lecture 2: Analysis of Algorithms I
Algorithms Lecture 2: Analysis of Algorithms I
ย 
Slide2
Slide2Slide2
Slide2
ย 
01 Analysis of Algorithms: Introduction
01 Analysis of Algorithms: Introduction01 Analysis of Algorithms: Introduction
01 Analysis of Algorithms: Introduction
ย 
Unit i basic concepts of algorithms
Unit i basic concepts of algorithmsUnit i basic concepts of algorithms
Unit i basic concepts of algorithms
ย 
Daa unit 2
Daa unit 2Daa unit 2
Daa unit 2
ย 
Design and Analysis of Algorithms
Design and Analysis of AlgorithmsDesign and Analysis of Algorithms
Design and Analysis of Algorithms
ย 
Analysis of algorithms
Analysis of algorithmsAnalysis of algorithms
Analysis of algorithms
ย 
Lecture 4 asymptotic notations
Lecture 4   asymptotic notationsLecture 4   asymptotic notations
Lecture 4 asymptotic notations
ย 
Complexity of Algorithm
Complexity of AlgorithmComplexity of Algorithm
Complexity of Algorithm
ย 
Data Structure: Algorithm and analysis
Data Structure: Algorithm and analysisData Structure: Algorithm and analysis
Data Structure: Algorithm and analysis
ย 
Asymptotic Notation
Asymptotic NotationAsymptotic Notation
Asymptotic Notation
ย 
Design and Analysis of Algorithms
Design and Analysis of AlgorithmsDesign and Analysis of Algorithms
Design and Analysis of Algorithms
ย 

Viewers also liked

9 big o-notation
9 big o-notation9 big o-notation
9 big o-notation
irdginfo
ย 
Big o notation
Big o notationBig o notation
Big o notation
keb97
ย 

Viewers also liked (13)

Analysis of algo
Analysis of algoAnalysis of algo
Analysis of algo
ย 
Analysis of algorithm
Analysis of algorithmAnalysis of algorithm
Analysis of algorithm
ย 
Algorithum Analysis
Algorithum AnalysisAlgorithum Analysis
Algorithum Analysis
ย 
Data structures and Big O notation
Data structures and Big O notationData structures and Big O notation
Data structures and Big O notation
ย 
9 big o-notation
9 big o-notation9 big o-notation
9 big o-notation
ย 
QUESTION BANK FOR ANNA UNNIVERISTY SYLLABUS
QUESTION BANK FOR ANNA UNNIVERISTY SYLLABUSQUESTION BANK FOR ANNA UNNIVERISTY SYLLABUS
QUESTION BANK FOR ANNA UNNIVERISTY SYLLABUS
ย 
Algorithm big o
Algorithm big oAlgorithm big o
Algorithm big o
ย 
Big o notation
Big o notationBig o notation
Big o notation
ย 
Linear Search & Binary Search
Linear Search & Binary SearchLinear Search & Binary Search
Linear Search & Binary Search
ย 
Linear search algorithm
Linear search algorithmLinear search algorithm
Linear search algorithm
ย 
Compiler Chapter 1
Compiler Chapter 1Compiler Chapter 1
Compiler Chapter 1
ย 
Gephi Toolkit Tutorial
Gephi Toolkit TutorialGephi Toolkit Tutorial
Gephi Toolkit Tutorial
ย 
Slideshare Powerpoint presentation
Slideshare Powerpoint presentationSlideshare Powerpoint presentation
Slideshare Powerpoint presentation
ย 

Similar to Analysis Of Algorithms I

Unit-1 DAA_Notes.pdf
Unit-1 DAA_Notes.pdfUnit-1 DAA_Notes.pdf
Unit-1 DAA_Notes.pdf
AmayJaiswal4
ย 
Lec03 04-time complexity
Lec03 04-time complexityLec03 04-time complexity
Lec03 04-time complexity
Abbas Ali
ย 
Data_Structure_and_Algorithms_Lecture_1.ppt
Data_Structure_and_Algorithms_Lecture_1.pptData_Structure_and_Algorithms_Lecture_1.ppt
Data_Structure_and_Algorithms_Lecture_1.ppt
ISHANAMRITSRIVASTAVA
ย 
Data Structure & Algorithms - Mathematical
Data Structure & Algorithms - MathematicalData Structure & Algorithms - Mathematical
Data Structure & Algorithms - Mathematical
babuk110
ย 
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
DebiPrasadSen
ย 
lecture 1
lecture 1lecture 1
lecture 1
sajinsc
ย 

Similar to Analysis Of Algorithms I (20)

big_oh
big_ohbig_oh
big_oh
ย 
Asymptotic Notations
Asymptotic NotationsAsymptotic Notations
Asymptotic Notations
ย 
Unit-1 DAA_Notes.pdf
Unit-1 DAA_Notes.pdfUnit-1 DAA_Notes.pdf
Unit-1 DAA_Notes.pdf
ย 
Weekends with Competitive Programming
Weekends with Competitive ProgrammingWeekends with Competitive Programming
Weekends with Competitive Programming
ย 
Lec03 04-time complexity
Lec03 04-time complexityLec03 04-time complexity
Lec03 04-time complexity
ย 
Algorithm Analysis
Algorithm AnalysisAlgorithm Analysis
Algorithm Analysis
ย 
Time complexity.ppt
Time complexity.pptTime complexity.ppt
Time complexity.ppt
ย 
Asymptotic Notation and Complexity
Asymptotic Notation and ComplexityAsymptotic Notation and Complexity
Asymptotic Notation and Complexity
ย 
algorithm_analysis1
algorithm_analysis1algorithm_analysis1
algorithm_analysis1
ย 
Asymptotic notation
Asymptotic notationAsymptotic notation
Asymptotic notation
ย 
Data_Structure_and_Algorithms_Lecture_1.ppt
Data_Structure_and_Algorithms_Lecture_1.pptData_Structure_and_Algorithms_Lecture_1.ppt
Data_Structure_and_Algorithms_Lecture_1.ppt
ย 
Data Structure & Algorithms - Mathematical
Data Structure & Algorithms - MathematicalData Structure & Algorithms - Mathematical
Data Structure & Algorithms - Mathematical
ย 
Time complexity
Time complexityTime complexity
Time complexity
ย 
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
Algorithms required for data structures(basics like Arrays, Stacks ,Linked Li...
ย 
Daa unit 6_efficiency of algorithms
Daa unit 6_efficiency of algorithmsDaa unit 6_efficiency of algorithms
Daa unit 6_efficiency of algorithms
ย 
Basic Computer Engineering Unit II as per RGPV Syllabus
Basic Computer Engineering Unit II as per RGPV SyllabusBasic Computer Engineering Unit II as per RGPV Syllabus
Basic Computer Engineering Unit II as per RGPV Syllabus
ย 
lecture 1
lecture 1lecture 1
lecture 1
ย 
Asymptotic Analysis in Data Structure using C
Asymptotic Analysis in Data Structure using CAsymptotic Analysis in Data Structure using C
Asymptotic Analysis in Data Structure using C
ย 
module1_Introductiontoalgorithms_2022.pdf
module1_Introductiontoalgorithms_2022.pdfmodule1_Introductiontoalgorithms_2022.pdf
module1_Introductiontoalgorithms_2022.pdf
ย 
Analysis of algorithms
Analysis of algorithmsAnalysis of algorithms
Analysis of algorithms
ย 

More from Sri Prasanna

Qr codes para tech radar
Qr codes para tech radarQr codes para tech radar
Qr codes para tech radar
Sri Prasanna
ย 
Qr codes para tech radar 2
Qr codes para tech radar 2Qr codes para tech radar 2
Qr codes para tech radar 2
Sri Prasanna
ย 
About stacks
About stacksAbout stacks
About stacks
Sri Prasanna
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About StacksAbout Stacks
About Stacks
Sri Prasanna
ย 
About Stacks
About StacksAbout Stacks
About Stacks
Sri Prasanna
ย 
Network and distributed systems
Network and distributed systemsNetwork and distributed systems
Network and distributed systems
Sri Prasanna
ย 
Introduction & Parellelization on large scale clusters
Introduction & Parellelization on large scale clustersIntroduction & Parellelization on large scale clusters
Introduction & Parellelization on large scale clusters
Sri Prasanna
ย 
Mapreduce: Theory and implementation
Mapreduce: Theory and implementationMapreduce: Theory and implementation
Mapreduce: Theory and implementation
Sri Prasanna
ย 
Other distributed systems
Other distributed systemsOther distributed systems
Other distributed systems
Sri Prasanna
ย 

More from Sri Prasanna (20)

Qr codes para tech radar
Qr codes para tech radarQr codes para tech radar
Qr codes para tech radar
ย 
Qr codes para tech radar 2
Qr codes para tech radar 2Qr codes para tech radar 2
Qr codes para tech radar 2
ย 
Test
TestTest
Test
ย 
Test
TestTest
Test
ย 
assds
assdsassds
assds
ย 
assds
assdsassds
assds
ย 
asdsa
asdsaasdsa
asdsa
ย 
dsd
dsddsd
dsd
ย 
About stacks
About stacksAbout stacks
About stacks
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
ย 
About Stacks
About  StacksAbout  Stacks
About Stacks
ย 
About Stacks
About StacksAbout Stacks
About Stacks
ย 
About Stacks
About StacksAbout Stacks
About Stacks
ย 
Network and distributed systems
Network and distributed systemsNetwork and distributed systems
Network and distributed systems
ย 
Introduction & Parellelization on large scale clusters
Introduction & Parellelization on large scale clustersIntroduction & Parellelization on large scale clusters
Introduction & Parellelization on large scale clusters
ย 
Mapreduce: Theory and implementation
Mapreduce: Theory and implementationMapreduce: Theory and implementation
Mapreduce: Theory and implementation
ย 
Other distributed systems
Other distributed systemsOther distributed systems
Other distributed systems
ย 

Recently uploaded

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
ย 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
ย 

Recently uploaded (20)

Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
ย 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
ย 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
ย 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
ย 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
ย 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ย 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
ย 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
ย 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
ย 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
ย 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
ย 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
ย 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
ย 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
ย 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
ย 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
ย 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
ย 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
ย 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
ย 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
ย 

Analysis Of Algorithms I

  • 1. Analysis of Algorithms The Non-recursive Case Except as otherwise noted, the content of this presentation is licensed under the Creative Commons Attribution 2.5 License.
  • 2.
  • 3.
  • 4. Generalizing Running Time Comparing the growth of the running time as the input grows to the growth of known functions. 10 3000 10 12 10 8 10 5 10000 13 1 10000 10 300 10 9 10 6 10 4 1000 10 1 1000 10 30 10 6 10 4 664 100 7 1 100 10ยณ 10ยณ 100 33 10 4 1 10 32 125 25 15 5 3 1 5 2โฟ nยณ nยฒ n log n n log n (1) Input Size: n
  • 5. Analyzing Running Time 1. n = read input from user 2. sum = 0 3. i = 0 4. while i < n 5. number = read input from user 6. sum = sum + number 7. i = i + 1 8. mean = sum / n T(n), or the running time of a particular algorithm on input of size n, is taken to be the number of times the instructions in the algorithm are executed. Pseudo code algorithm illustrates the calculation of the mean (average) of a set of n numbers: Statement Number of times executed 1 1 2 1 3 1 4 n+1 5 n 6 n 7 n 8 1 The computing time for this algorithm in terms on input size n is: T(n) = 4n + 5.
  • 6. Big-Oh Notation Definition 1 : Let f(n) and g(n) be two functions. We write: f(n) = O(g(n)) or f = O(g) (read &quot;f of n is big oh of g of n&quot; or &quot;f is big oh of g&quot;) if there is a positive integer C such that f(n) <= C * g(n) for all positive integers n. The basic idea of big-Oh notation is this: Suppose f and g are both real-valued functions of a real variable x. If, for large values of x, the graph of f lies closer to the horizontal axis than the graph of some multiple of g, then f is of order g, i.e., f(x) = O(g(x)). So, g(x) represents an upper bound on f(x).
  • 7.
  • 8. Example 2 In the previous timing analysis, we ended up with T(n) = 4n + 5, and we concluded intuitively that T(n) = O(n) because the running time grows linearly as n grows. Now, however, we can prove it mathematically: To show that f(n) = 4n + 5 = O(n), we need to produce a constant C such that: f(n) <= C * n for all n. If we try C = 4, this doesn't work because 4n + 5 is not less than 4n. We need C to be at least 9 to cover all n. If n = 1, C has to be 9, but C can be smaller for greater values of n (if n = 100, C can be 5). Since the chosen C must work for all n, we must use 9: 4n + 5 <= 4n + 5n = 9n Since we have produced a constant C that works for all n, we can conclude: ๏”๏€จ๏€ด๏ฎ๏€ ๏€ซ๏€ ๏€ต๏€ฉ๏€ ๏€ฝ๏€ ๏๏€จ๏ฎ๏€ฉ
  • 9.
  • 10. Example 4 Suppose f(n) = n 2 + 3n - 1. We want to show that f(n) = O(n 2 ). f(n) = n 2 + 3n - 1 < n 2 + 3n (subtraction makes things smaller so drop it) <= n 2 + 3n 2 (since n <= n 2 for all integers n) = 4n 2 Therefore, if C = 4, we have shown that f(n) = O(n 2 ). Notice that all we are doing is finding a simple function that is an upper bound on the original function. Because of this, we could also say that This would be a much weaker description, but it is still valid. f(n) = O(n 3 ) since (n 3 ) is an upper bound on n2
  • 11. Example 5 Show: f(n) = 2n 7 - 6n 5 + 10n 2 โ€“ 5 = O(n 7 ) f(n) < 2n 7 + 6n 5 + 10n 2 <= 2n 7 + 6n 7 + 10n 7 = 18n 7 thus, with C = 18 and we have shown that f(n) = O(n 7 ) Any polynomial is big-Oh of its term of highest degree . We are also ignoring constants. Any polynomial (including a general one) can be manipulated to satisfy the big-Oh definition by doing what we did in the last example: take the absolute value of each coefficient (this can only increase the function); Then since we can change the exponents of all the terms to the highest degree (the original function must be less than this too). Finally, we add these terms together to get the largest constant C we need to find a function that is an upper bound on the original one. n j <= n d if j <= d
  • 12. Adjusting the definition of big-Oh: Many algorithms have a rate of growth that matches logarithmic functions. Recall that log2 n is the number of times we have to divide n by 2 to get 1; or alternatively, the number of 2's we must multiply together to get n: n = 2 k ๏ƒ› log 2 n = k Many &quot;Divide and Conquer&quot; algorithms solve a problem by dividing it into 2 smaller problems. You keep dividing until you get to the point where solving the problem is trivial. This constant division by 2 suggests a logarithmic running time. Definition 2 : Let f(n) and g(n) be two functions. We write: f(n) = O(g(n)) or f = O(g) if there are positive integers C and N such that f(n) <= C * g(n) for all integers n >= N. Using this more general definition for big-Oh, we can now say that if we have f(n) = 1, then f(n) = O(log(n)) since C = 1 and N = 2 will work.
  • 13.
  • 14. Example 6: Show: f(n) = 3n 3 + 3n - 1 = ๏‘ (n 3 ) As implied by the theorem above, to show this result, we must show two properties: f(n) = O (n 3 ) f(n) = ๏— (n 3 ) First, we show (i), using the same techniques we've already seen for big-Oh. We consider N = 1, and thus we only consider n >= 1 to show the big-Oh result. f(n) = 3n 3 + 3n - 1 < 3n 3 + 3n + 1 <= 3n 3 + 3n 3 + 1n 3 = 7n 3 thus, with C = 7 and N = 1 we have shown that f(n) = O(n 3 )
  • 15. Next, we show (ii). Here we must provide a lower bound for f(n). Here, we choose a value for N, such that the highest order term in f(n) will always dominate (be greater than) the lower order terms. We choose N = 2 , since for n >=2 , we have n3 >= 8 . This will allow n 3 to be larger than the remainder of the polynomial (3n - 1) for all n >= 2. So, by subtracting an extra n 3 term, we will form a polynomial that will always be less than f(n) for n >= 2 . f(n) = 3n 3 + 3n - 1 > 3n 3 - n3 since n 3 > 3n - 1 for any n >= 2 = 2n 3 Thus, with C = 2 and N = 2 , we have shown that f(n) = ๏— (n 3 ) since f(n) is shown to always be greater than 2n 3 .
  • 16. Big-Oh Operations Summation Rule Suppose T1(n) = O(f1(n)) and T2(n) = O(f2(n)). Further, suppose that f2 grows no faster than f1, i.e., f2(n) = O(f1(n)). Then, we can conclude that T1(n) + T2(n) = O(f1(n)). More generally, the summation rule tells us O(f1(n) + f2(n)) = O(max(f1(n), f2(n))). Proof : Suppose that C and C' are constants such that T1(n) <= C * f1(n) and T2(n) <= C' * f2(n). Let D = the larger of C and C'. Then, T1(n) + T2(n) <= C * f1(n) + C' * f2(n) <= D * f1(n) + D * f2(n) <= D * (f1(n) + f2(n)) <= O(f1(n) + f2(n))
  • 17.
  • 18. Example 7 Compute the big-Oh running time of the following C++ code segment: for (i = 2; i < n; i++) { sum += i; } The number of iterations of a for loop is equal to the top index of the loop minus the bottom index, plus one more instruction to account for the final conditional test. Note: if the for loop terminating condition is i <= n , rather than i < n , then the number of times the conditional test is performed is: ((top_index + 1) โ€“ bottom_index) + 1) In this case, we have n - 2 + 1 = n - 1 . The assignment in the loop is executed n - 2 times. So, we have (n - 1) + (n - 2) = (2n - 3) instructions executed = O(n).
  • 19. Example 8 Consider the sorting algorithm shown below. Find the number of instructions executed and the complexity of this algorithm. 1) for (i = 1; i < n; i++) { 2) SmallPos = i; 3) Smallest = Array[SmallPos]; 4) for (j = i+1; j <= n; j++) 5) if (Array[j] < Smallest) { 6) SmallPos = j; 7) Smallest = Array[SmallPos] } 8) Array[SmallPos] = Array[i]; 9) Array[i] = Smallest; } The total computing time is: T(n) = (n) + 4(n-1) + n(n+1)/2 โ€“ 1 + 3[n(n-1) / 2] = n + 4n - 4 + (n 2 + n)/2 โ€“ 1 + (3n 2 - 3n) / 2 = 5n - 5 + (4n 2 - 2n) / 2 = 5n - 5 + 2n 2 - n = 2n 2 + 4n - 5 = O(n 2 )
  • 20. Example 9 What is the complexity of this C++ code? 1) cin >> n; // Same as: n = GetInteger(); 2) for (i = 1; i <= n; i ++) 3) for (j = 1; j <= n; j ++) 4) A[i][j] = 0; 5) for (i = 1; i <= n; i ++) 6) A[i][i] = 1; The following program segment initializes a two-dimensional array A (which has n rows and n columns) to be an n x n identity matrix โ€“ that is, a matrix with 1โ€™s on the diagonal and 0โ€™s everywhere else. More formally, if A is an n x n identity matrix, then: A x M = M x A = M, for any n x n matrix M.
  • 21. Example 10 Here is a simple linear search algorithm that returns the index location of a value in an array. /* a is the array of size n we are searching through */ i = 0; while ((i < n) && (x != a[i])) i++; if (i < n) location = i; else location = -1; 1 + 3 + 5 + ... + (2n - 1) / n = (2 (1 + 2 + 3 + ... + n) - n) / n We know that 1 + 2 + 3 + ... + n = n (n + 1) / 2, so the average number of lines executed is: [2[n(n+1)/2] โ€“ n]/n =n =O(n) Average number of lines executed equals:
  • 22.
  • 23. Here is the body of a function: sum = 0; for (i = 1; i <= f(n); i++) sum += i; where f(n) is a function call. Give a big-oh upper bound on this function if the running time of f(n) is O(n), and the value of f(n) is n!:
  • 24.
  • 25.
  • 26.
  • 27. Polynomial Transformation Informally, if P 1 ๏‚ต P 2 , then we can think of a solution to P 1 being obtained from a solution to P 2 in polynomial time. The code below gives some idea of what is implied when we say P 1 ๏‚ต P 2 : Convert_To_P2 p1 = ... /* Takes an instance of p1 and converts it to an instance of P2 in polynomial time. */ Solve_P2 p2 = ... /* Solves problem P2 */ Solve_P1 p1 = Solve_P2(Convert_To_P2 p1);
  • 28. Given the above definition of a transformation, these theorems should not be very surprising: If ๏ ๏€  1 ๏‚ต ๏ ๏€  2 then ๏ ๏€  2 ๏ƒŽ P ๏‚ฎ ๏ ๏€  1 ๏ƒŽ P If ๏ ๏€  1 ๏‚ต ๏ ๏€  2 then ๏ ๏€  2 ๏ƒ ๏€  P ๏‚ฎ๏€  ๏ ๏€  1 ๏ƒ ๏€  P These theorems suggest a technique for proving that a given problem ๏ is NP-complete. To Prove ๏๏€ ๏ƒŽ NP: 1) Find a known NP-complete problem ๏ NP 2) Find a transformation such that ๏ NP ๏‚ต๏€ ๏ 3) Prove that the transformation is polynomial.
  • 29. The meaning of NP-Completeness A Statement of a Problem: Solving a problem means finding one algorithm that will solve all instances of the problem. ๏€  ๏๏€ ๏ƒŽ๏€  ๏Ž๏ ๏€ฌ๏€ ๏๏€ ๏‚ต๏€ ๏“๏๏”