Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
1 views

Ch1. Analysis of Algorithms

An algorithm is a set of instructions for solving a problem, and there can be multiple algorithms for the same problem. The analysis of algorithms focuses on their efficiency in terms of time and space, with an emphasis on estimating and comparing execution times using mathematical techniques. Growth rates, represented by Big O notation, help categorize algorithms based on their time requirements as a function of problem size.

Uploaded by

x739509
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

Ch1. Analysis of Algorithms

An algorithm is a set of instructions for solving a problem, and there can be multiple algorithms for the same problem. The analysis of algorithms focuses on their efficiency in terms of time and space, with an emphasis on estimating and comparing execution times using mathematical techniques. Growth rates, represented by Big O notation, help categorize algorithms based on their time requirements as a function of problem size.

Uploaded by

x739509
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

Analysis of Algorithms

CS102
Subrina Thompson
Algorithm
• An algorithm is a set of instructions to be followed to solve a problem
• There can be more than one solution (more than one algorithm) to solve a given problem
• An algorithm can be implemented using different programming languages on different
platforms
• An algorithm must be correct. It should correctly solve the problem.
• e.g. For sorting, this means even if (1) the input is already sorted, or (2) it contains repeated
elements.
• Once we have a correct algorithm for a problem, we have to determine the
efficiency of that algorithm.
Algorithmic Performance
• There are two aspects of algorithmic performance:
• Time
• Instructions take time.
• How fast does the algorithm perform?
• What affects its runtime?
• Space
• Data structures take space
• What kind of data structures can be used?
• How does choice of data structure affect the runtime?
• We will focus on time:
• How to estimate the time required for an algorithm
• How to reduce the time required
Analysis of Algorithms
• Analysis of Algorithms is the area of Computer Science that provides tools to analyze the efficiency
of different methods of solutions.
• How do we compare the time efficiency of two algorithms that solve the same problem?
• Naïve Approach: implement these algorithms in a programming language (Java), and run them to
compare their time requirements. Comparing the programs (instead of algorithms) has difficulties.
• How are the algorithms coded?
• Comparing running times means comparing the implementations.
• We should not compare implementations, because they are sensitive to programming style that may cloud the issue of which algorithm is
inherently more efficient.
• What computer should we use?
• We should compare the efficiency of the algorithms independently of a particular computer.
• What data should the program use?
• Any analysis must be independent of specific data.
Analysis of Algorithms
• When we analyze algorithms, we should employ mathematical
techniques that analyze algorithms independently of specific
implementations, computers, or data.

• To analyze algorithms:
• First, we start to count the number of significant operations in a particular
solution to assess its efficiency.
• Then, we will express the efficiency of algorithms using growth functions.
The Execution Time of Algorithms
• Each operation in an algorithm (or a program) has a cost.
Each operation takes a certain time
count = count + 1;  take a certain amount of time, but it is constant
A sequence of operations:
count = count + 1; Cost: c1
sum = sum + count; Cost: c2
 Total Cost: c1 + c2
The Execution Time of Algorithms
Example: Simple If-Statement
Cost Times
if( n < 0 ) c1 1
absval = -n; c2 1
else
absval = n; c3 1
Total Cost <= c1 + max( c2, c3 )
The Execution Time of Algorithms
Example: Simple Loop
Cost Times
i = 1 c1 1
sum = 0; c2 1
while( i <= n ) { c3 n + 1
i = i + 1; c4 n
sum = sum + i; c5 n
}
Total Cost <= c1 + c2 + ((n + 1) * c3) + (n * c4) + (n * c5)
 The time required for this algorithm is proportional to n
The Execution Time of Algorithms
Example: Nested Loop
Cost Times
i = 1 c1 1

sum = 0; c2 1

while( i <= n ) { c3 n + 1

j = 1; c4 n

while( j <= n ) { c5 n * (n + 1)

sum = sum + i; c6 n * n
j = j + 1; c7 n * n

i = i + 1; c8 n

Total Cost <= c1 + c2 + ((n + 1) * c3) + (n * c4) + ((n * ( n + 1)) * c5) + (n * n) * c6 + (n * n) * c7 + ( n * c8)

 The time required for this algorithm is proportional to n2


General Rules for Estimation
• Loops: The running time of a loop is at most the running time of the statements
inside of that loop times the number of iterations.
• Nested Loops: Running time of a nested loop containing a statement in the inner
most loop is the running time of statement multiplied by the product of the sized
of all loops.
• Consecutive Statements: Just add the running times of those consecutive
statements.
• If/Else: Never more than the running time of the test plus the larger of running
times of S1 and S2.
Algorithm Growth Rates
• We measure an algorithm’s time requirement as a function of the problem size.
• Problem size depends on the application: e.g. number of elements in a list for a sorting algorithm, the number disks for
towers of hanoi.
• So, for instance, we say that (if the problem size is n)
• Algorithm A requires 5 * n2 time units to solve a problem of size n.
• Algorithm B requires 7 * n time units to solve a problem of size n.
• The most important thing to learn is how quickly the algorithm’s time requirement grows as a function of
the problem size.
• Algorithm A requires time proportional to n2.
• Algorithm B requires time proportional to n.
• An algorithm’s proportional time requirement is known as g rowth rate .
• We can compare the efficiency of two algorithms by comparing their growth rates.
Algorithm Growth Rate

Time requirements as a function


of the problem size n
Common Growth Rates
Order-of-Magnitude Analysis and Big O
Notation
• If Algorithm A requires time proportional to f(n), Algorithm A is said to be order
f(n), and it is denoted as O(f(n)).
• The function f(n) is called the algorithm’s growth-rate function.
• Since the capital O is used in the notation, this notation is called the Big O
notation.
• If Algorithm A requires time proportional to n2, it is O(n2).
• If Algorithm A requires time proportional to n, it is O(n).
Definition of the Order of an Algorithm
Definition:
Algorithm A is order f(n) – denoted as O(f(n)) –
if constants k and n0 exist such that A requires
no more than k*f(n) time units to solve a problem
of size n ≥ n0.
• The requirement of n ≥ n0 in the definition of O(f(n)) formalizes the notion of sufficiently
large problems.
• In general, many values of k and n can satisfy this definition.
Order of an Algorithm
• If an algorithm requires n2 – 3 * n + 10 seconds to solve a problem size n.
If constants k and n0 exist such that
k * n2 > n2 – 3 * n + 10 for all n ≥ n0 .
the algorithm is order n2 (In fact, k is 3 and n0 is 2)
3 * n2 > n2 – 3 * n + 10 for all n ≥ 2 .
Thus, the algorithm requires no more than k * n2 time units for n ≥ n0 ,
So it is O(n2)
Order of an Algorithm
A Comparison of Growth-Rate Functions
A Comparison of Growth-Rate Functions
Growth-Rate Functions
• O(1) Time requirement is constant, and it is independent of the problem’s size.
• O(log2n) Time requirement for a logarithmic algorithm increases slowly as the problem size increases.
• O(n) Time requirement for a linear algorithm increases directly with the size of the problem.
• O(n*log2n) Time requirement for a n*log2n algorithm increases more rapidly than a linear algorithm.
• O(n2) Time requirement for a quadratic algorithm increases rapidly with the size of the problem.
• O(n3) Time requirement for a cubic algorithm increases more rapidly with the size of the problem than the
time requirement for a quadratic algorithm.
• O(2n) As the size of the problem increases, the time requirement for an exponential algorithm increases
too rapidly to be practical.
Growth-Rate Functions
• If an algorithm takes 1 second to run with the problem size 8, what is the time requirement (approximately)
for that algorithm with the problem size 16?
• If its order is:
O(1)  T(n) = 1 second
O(log2n)  T(n) = (1*log216) / log28 = 4/3 seconds
O(n)  T(n) = (1*16) / 8 = 2 seconds
O(n*log2n)  T(n) = (1*16*log216) / 8*log28 = 8/3 seconds
O(n2)  T(n) = (1*162) / 82 = 4 seconds
O(n3)  T(n) = (1*163) / 83 = 8 seconds
O(2n)  T(n) = (1*216) / 28 = 28 seconds = 256 seconds
Properties of Growth-Rate Functions
1. We can ignore low-order terms in an algorithm’s growth-rate function.
• If an algorithm is O(n3+4n2+3n), it is also O(n3).
• We only use the higher-order term as algorithm’s growth-rate function.
2. We can ignore a multiplicative constant in the higher-order term of an algorithm’s growth-rate function.
• If an algorithm is O(5n3), it is also O(n3).
3. O(f(n)) + O(g(n)) = O(f(n)+g(n))
• We can combine growth-rate functions.
• If an algorithm is O(n3) + O(4n), it is also O(n3 +4n2)  So, it is O(n3).
• Similar rules hold for multiplication.

You might also like