Prerequisites: Insertion Sort, Using Matplotlib for Animations
Visualizing algorithms makes it easier to understand them by analyzing and comparing the number of operations that took place to compare and swap the elements. For this we will use matplotlib, to plot bar graphs to represent the elements of the array,
Approach:
- We will generate an array with random elements.
- The algorithm will be called on that array and yield statement will be used instead of a return statement for visualization purposes.
- We will yield the current states of the array after comparing and swapping. Hence the algorithm will return a generator object.
- Matplotlib animation will be used to visualize the comparing and swapping of the array.
- The array will be stored in a matplotlib bar container object (‘rects’), where the size of each bar will be equal to the corresponding value of the element in the array.
- The inbuilt FuncAnimation method of matplotlib animation will pass the container and generator objects to the function used to create animation. Each frame of the animation corresponds to a single iteration of the generator.
- The animation function is repeatedly called will set the height of the rectangle equal to the value of the elements.
Python3
# import all the modules import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation import matplotlib as mp import numpy as np import random # set the style of the graph plt.style.use( 'fivethirtyeight' ) # input the size of the array (list here) # and shuffle the elements to create # a random list n = int ( input ( "enter array size\n" )) a = [i for i in range ( 1 , n + 1 )] random.shuffle(a) # insertion sort def insertionsort(a): for j in range ( 1 , len (a)): key = a[j] i = j - 1 while (i > = 0 and a[i] > key): a[i + 1 ] = a[i] i - = 1 # yield the current position # of elements in a yield a a[i + 1 ] = key yield a # generator object returned by the function generator = insertionsort(a) # to set the colors of the bars. data_normalizer = mp.colors.Normalize() color_map = mp.colors.LinearSegmentedColormap( "my_map" , { "red" : [( 0 , 1.0 , 1.0 ), ( 1.0 , . 5 , . 5 )], "green" : [( 0 , 0.5 , 0.5 ), ( 1.0 , 0 , 0 )], "blue" : [( 0 , 0.50 , 0.5 ), ( 1.0 , 0 , 0 )] } ) fig, ax = plt.subplots() # the bar container rects = ax.bar( range ( len (a)), a, align = "edge" , color = color_map(data_normalizer( range (n)))) # setting the view limit of x and y axes ax.set_xlim( 0 , len (a)) ax.set_ylim( 0 , int ( 1.1 * len (a))) # the text to be shown on the upper left # indicating the number of iterations # transform indicates the position with # relevance to the axes coordinates. text = ax.text( 0.01 , 0.95 , "", transform = ax.transAxes) iteration = [ 0 ] # function to be called repeatedly to animate def animate(A, rects, iteration): # setting the size of each bar equal # to the value of the elements for rect, val in zip (rects, A): rect.set_height(val) iteration[ 0 ] + = 1 text.set_text( "iterations : {}" . format (iteration[ 0 ])) anim = FuncAnimation(fig, func = animate, fargs = (rects, iteration), frames = generator, interval = 50 , repeat = False ) plt.show() |
Output: