Movatterモバイル変換


[0]ホーム

URL:


Open In App

Prerequisites:Introduction to Matplotlib,Merge Sort

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:

  1. We will generate an array with random elements.
  2. The algorithm will be called on that array and yield statement will be used instead of a return statement for visualization purposes.
  3. We will yield the current states of the array after comparing and swapping. Hence the algorithm will return a generator object.
  4. Matplotlib animation will be used to visualize the comparing and swapping of the array.
  5. The array will be stored in a matplotlib bar container object ('bar_rects'), where the size of each bar will be equal to the corresponding value of the element in the array.
  6. 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.
  7. The animation function is repeatedly called will set the height of the rectangle equal to the value of the elements.

Below is the implementation of the above approach.

Python3
# import all the modulesimportmatplotlib.pyplotaspltfrommatplotlib.animationimportFuncAnimationfrommpl_toolkits.mplot3dimportaxes3dimportmatplotlibasmpimportnumpyasnpimportrandom# function to recursively divide the arradefmergesort(A,start,end):ifend<=start:returnmid=start+((end-start+1)//2)-1# yield from statements have been used to yield# the array from the functionsyield frommergesort(A,start,mid)yield frommergesort(A,mid+1,end)yield frommerge(A,start,mid,end)# function to merge the arraydefmerge(A,start,mid,end):merged=[]leftIdx=startrightIdx=mid+1whileleftIdx<=midandrightIdx<=end:ifA[leftIdx]<A[rightIdx]:merged.append(A[leftIdx])leftIdx+=1else:merged.append(A[rightIdx])rightIdx+=1whileleftIdx<=mid:merged.append(A[leftIdx])leftIdx+=1whilerightIdx<=end:merged.append(A[rightIdx])rightIdx+=1foriinrange(len(merged)):A[start+i]=merged[i]yieldA# function to plot barsdefshowGraph():# for random unique valuesn=20a=[iforiinrange(1,n+1)]random.shuffle(a)datasetName='Random'# generator object returned by the functiongenerator=mergesort(a,0,len(a)-1)algoName='Merge Sort'# style of the chartplt.style.use('fivethirtyeight')# set colors of the barsdata_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()# bar containerbar_rects=ax.bar(range(len(a)),a,align="edge",color=color_map(data_normalizer(range(n))))# setting the limits of x and y axesax.set_xlim(0,len(a))ax.set_ylim(0,int(1.1*len(a)))ax.set_title("ALGORITHM : "+algoName+"\n"+"DATA SET : "+datasetName,fontdict={'fontsize':13,'fontweight':'medium','color':'#E4365D'})# 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,color="#E4365D")iteration=[0]defanimate(A,rects,iteration):forrect,valinzip(rects,A):# setting the size of each bar equal# to the value of the elementsrect.set_height(val)iteration[0]+=1text.set_text("iterations :{}".format(iteration[0]))# call animate function repeatedlyanim=FuncAnimation(fig,func=animate,fargs=(bar_rects,iteration),frames=generator,interval=50,repeat=False)plt.show()showGraph()

Output:


Improve

Explore

Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp