Skip to content

Rochan2001/sorting-visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sorting Visualizer

https://sorting-visualizzzer.herokuapp.com/

This is a web application built using vanilla JS, HTML, CSS and Flask. This app was designed to better understand the working of sorting algorithms by visualizing them.

The sorting algorithms which are currently supported:

  • Quick Sort
  • Merge Sort
  • Heap Sort
  • Bubble Sort
  • Selection Sort
  • Insertion Sort

Installation

To run this app locally, clone this repo and install the dependencies.

$ git clone https://github.com/Rochan2001/sorting-visualizer.git
$ cd sorting-visualizer
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt