Merge Sort
Welcome to Sorting Visualizer! I built this application because I was fascinated by sorting algorithms, and I wanted to visualize them in action. I hope that you enjoy playing around with this visualization tool just as much as I enjoyed building it. You could find the source code through
this link.Merge sort is one of the most efficient sorting algorithms. It is based on the divide-and-conquer strategy. Merge sort continuously cuts down a list into multiple sublists until each has only one item, then merges those sublists into a sorted list.
Tutorial
This visual of merge sort is straight forward the generate graph button gives a new random graph and merge sort to see the vertical bars being sorted from shortest to tallest(smallest to largest values).