Asymptotic Analysis


Asymptotic Analysis

Using asymptotic analysis, we can get an idea about the performance of the algorithm based on the input size. We should not calculate the exact running time, but we should find the relation between the running time and the input size. We should follow the running time when the size of the input is increased.

For the space complexity, our goal is to get the relation or function that how much space in the main memory is occupied to complete the algorithm.

Asymptotic Behavior

For a function f(n) the asymptotic behavior is the growth of f(n) as n gets large. Small input values are not considered. Our task is to find how much time it will take for a large value of the input.

For example,f(n) = c * n + k as linear time complexity.f(n) = c *(n*n) + k is quadratic time complexity.

The analysis of algorithms can be divided into three different cases. The cases are as follows

Best Case − Here the lower bound of the running time is calculated. It describes the behavior of an algorithm under optimal conditions.

Average Case − In this case, we calculate the region between the upper and lower bound of the running time of algorithms. In this case, the number of executed operations are not minimum and not maximum.

Worst Case − In this case we calculate the upper bound of the running time of algorithms. In this case, a maximum number of operations are executed.



Updated on: 17-Jun-2020

645 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements