/SortingVisualiser

A sorting visualizer written in vanilla JavaScript that helps in understanding sorting algorithms in a better way!

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0


Sorting Visualiser


A web-app that helps in grasping sorting concepts used in different sorting algorithms via visualisations.


Interpretation of color

  • array elements are represented by bars, each bar's height represents it's magnitude
  • cyan: unsorted part of array
  • white: elements are getting compared
  • red: elements are out of order for that particular sorting algo
  • dark-green: elements are in order for that particular sorting algo
  • green: sorted part of array

To be added

  1. Selection Sort
  2. Quick Sort

For more ref: Click here