Complexity analysis

advertisement
Complexity Analysis
ALGORITHM: An Algorithm is a mechanism to manipulate data in data structure.
1. It is a step-by-step method of solving a problem or making decisions, as in making a diagnosis.
2. An established mechanical procedure for solving certain mathematical problems.
An algorithm is just the outline or idea behind a program. We express algorithms in pseudo-code:
something resembling C or C++, but with some statements in English rather than within the
programming language. It is expected that one could translate each pseudo-code statement to a
small number of lines of actual code, easily and mechanically.
Properities of the Algorithm:
1) Finiteness: - an algorithm terminates after a finite numbers of steps.
2) Definiteness: - each step in algorithm is unambiguous. This means that the action specified by the
step cannot be interpreted (explain the meaning of) in multiple ways & can be performed without
any confusion.
3) Input:- an algorithm accepts zero or more inputs
4) Output:- it produces at least one output.
5) Effectiveness:- it consists of basic instructions that are realizable. This means that the instructions
can be performed by using the given inputs in a finite amount of time
COMPUTATIONAL COMPLEXITY
To compare the efficiency of algorithms, a measure of the degree of difficulty of an
algorithm called Computational Complexity is developed.
COMPLEXITY ANALYSIS
Efficiency of an algorithm: the task of determine the computing time and storage space
required of an algorithm is known as efficiency of an algorithm or performance analysis.
Two kind of efficiency:
1- Space efficiency.
2- Time efficiency.
Page 1 of 3
Space Efficiency: The amount of temporary required for running the algorithm, it has
two components.
Fixed static part: space for numbers, constants size of input and output C p 
Fixed static part.
Variable dynamic part: variables whose size is dependent problem, S p 
space required for variable dynamic part.
iii-
A total space requirement for an algorithm is the sum of both fixed and dynamic part.
S(P)= CP+SP
EXAMPLE 1:

Find sum of two integer numbers.
int x,y,sum;
sum = x+y;
In this code no variable dynamic part space for each integer variable is 4 byte.
We have 3 integer variable and space needed for x,y and sum = 12 bytes.
S(P)= CP+SP
S(P)= 12 + 0 = 12
EXAMPLE 2:

Find sum of array elements.
int add(int x[], int n)
{
int total = 0, i;
for(i=0; i<n; i++)
total = total + x[i];
return total;
}
S(P)= CP+SP
S(P)= 4 X 4 + n = 16 + n
Page 2 of 3
Time Efficiency: the amount of time to run the program is known as time efficiency or
time complexity.
Total time taken by an algorithm is the sum of compile time and runtime.
EXAMPLE 1:
EXAMPLE 2:
a = a * b
1 unit of time.
for( i=0; i<n; i++)
a = i + a;
n unit of time.
EXAMPLE 3:
for( i=0; i<n; i++)
for( j=0; j<n; j++)
a = i + j;
1 unit of time.
BIG O: Big O is a technique for comparing two or more algorithm.
CHARACTERISTICS:
1- Comparison of algorithms without hardware consideration.
2- Simplification of equation of ease comparison.
EXAMPLE 1:
EXAMPLE 2:
𝟑
𝑻𝒊𝒎𝒆 = 𝟐𝑵 + 𝟐𝑵 + 𝟏𝟎𝟎
= 𝑶( 𝟐 ∗ 𝑵𝟑 + 𝟐 ∗ 𝑵 + 𝟏𝟎𝟎)
𝑻𝒊𝒎𝒆 = 𝟑𝑵𝟐 + 𝟏𝟓𝟎
= 𝑶( 𝟑 ∗ 𝑵𝟐 + 𝟏𝟓𝟎)
= 𝑶( 𝟐 ∗ 𝑵𝟑 ) + 𝑶(𝟐 ∗ 𝑵) + 𝑶(𝟏𝟎𝟎)
= 𝑶( 𝟐 ∗ 𝑵𝟑 )
𝑻𝒊𝒎𝒆 = 𝑶( 𝑵𝟑 )
= 𝑶( 𝟑 ∗ 𝑵𝟑 ) + 𝑶(𝟏𝟓𝟎)
= 𝑶( 𝟑 ∗ 𝑵𝟑 )
𝑻𝒊𝒎𝒆 = 𝑶( 𝑵𝟐 )
Worst-case, Best-case and Average-case Efficiencies:
Let us the complexity function T(n) for certain cases.
1. Worst case: It gives the maximum value of T(n) for any possible input.
2. Best case: It gives the minimum value of T(n) for any possible input.
3. Average case: It gives the expected value of T(n)
Page 3 of 3
Download