Introduction
Algorithm complexity can be a difficult concept to grasp, even presented with compelling mathematical arguments. This article presents a tiny Python program that shows the relative complexity of several typical functions. It can be easily adapted to other functions.
Complexity. Why it matters?
Computational complexity is a venerable subject in Computer Science. It can be defined as the amount of time and space that an algorithm needs to solve an instance of a problem.
The underpinnings of computational complexity are mathematical, but its implications very practical. There are problems that are “intractable”. They are not impossible (i.e. undecidable) but no efficient algorithm is known for them. That is: they are very difficult to solve with today technology, and even with the foreseeable one.
Usually, worst-case is the best
The most popular analysis in computational complexity is the worst-case scenario. Despite its pessimism, it is very reasonable: the size of the problems willing to be solved increases as time goes. We want to process petabytes of data, instead of megabytes. So, size is an all-important factor in algorithm complexity.
Consider the input size as the independent variable, and the growth rate is the dependent variable, and try to analyze its performance as the input size grows to infinity. This analysis is called big-Oh and has many rules that you can consult in any good algorithmic textbook. The most important one is that constants do not affect algorithmic performance for large inputs. The reason, again, is that the size of the input is the most important factor and constants do not depend on the input size.
Comparing function growths in Python
Newcomers to the theory of computation often get confused by the fact that exponential functions like
are worse than polynomial functions like, say
. This is clear from the mathematical definition of the Big-Oh function, but it is not easy to see unless we think that we account for very large
.
The following Python code visualizes the growth as the problem instance (N) increases of several functions:
. Note that
is considered a bad performance as it takes
operations to process 1000 inputs. In general,
is considered bad for k>=2.
The code uses the libraries NumPy and MatPlotLib and employs a functional programming technique called currying to compute
for constant k. It is easy to compute other functions by modifying the list FUNCTIONS.
Code : Python code explaining asymptotic behaviour of several functions.
# Python code that compares the # asymptotic behaviour of several functions import numpy as np import matplotlib.pyplot as plt # Returns a function that computes x ^ n for a given n def poly(n): def polyXN(x): return x**n return polyXN # Functions to compare and colors to use in the graph FUNCTIONS = [np.log, poly(1), poly(2), poly(3), np.exp] COLORS = ['c', 'b', 'm', 'y', 'r'] # Plot the graphs def compareAsymptotic(n): x = np.arange(1, n, 1) plt.title('O(n) for n ='+str(n)) for f, c in zip(FUNCTIONS, COLORS): plt.plot(x, f(x), c) plt.show() compareAsymptotic(3) compareAsymptotic(5) compareAsymptotic(10) compareAsymptotic(20) |
The results are not surprising: the exponential function has the worst performance, as it grows very quick given the input size. For N=20, the other functions are insignificant compared with the exponential.
The logarithm is shown in cyan, the polynomials in blue, magenta and yellow and the exponential in red.




Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.
Recommended Posts:
- Visualizing Tiff File Using Matplotlib and GDAL using Python
- Visualizing Bubble sort using Python
- Building and visualizing Sudoku Game Using Pygame
- Python | Visualizing image in different color spaces
- Python Bokeh – Visualizing Stock Data
- Python Bokeh – Visualizing the Iris Dataset
- Visualizing representations of Outputs/Activations of each CNN layer
- Visualizing Relationship between variables with scatter plots in Seaborn
- Visualizing training with TensorBoard
- Python | Create video using multiple images using OpenCV
- Python | Create a stopwatch using clock object in kivy using .kv file
- Image resizing using Seam carving using OpenCV in Python
- Circular (Oval like) button using canvas in kivy (using .kv file)
- Python - Read blob object in python using wand library
- Creating and updating PowerPoint Presentations in Python using python - pptx
- Competitive Coding Setup for C++ and Python in VS Code using Python Script
- Send mail from your Gmail account using Python
- Using Iterations in Python Effectively
- Whatsapp using Python!
- Mouse and keyboard automation using Python
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

