Skip to content

Myphz/sortvisualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to Sort Visualizer!

https://www.sortvisualizer.com
Sort Visualizer is a web application designed to better understand sorting algorithms by displaying and visualizing them. In the website you can find information and implementations in multiple programming languages of more than 15 sorting algorithms, categorized by their time and space complexity.

The sorting algorithms currently available are:

  • Quick Sort
  • Merge Sort
  • Heap Sort
  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Gnome Sort
  • Shaker Sort
  • Odd Even Sort
  • Pancake Sort
  • Bitonic Sort
  • Radix Sort
  • Shell Sort
  • Comb Sort
  • Bogo Sort

Custom Sort

It's also possible to design and visualize your own sorting algorithm, using the documented APIs. Have fun messing around and trying new stuff!

Running locally

To run the project locally, install Python 3 on your machine, clone the repository, install all the dependencies and run the app.py file.

git clone https://github.com/Myphz/sortvisualizer
cd sortvisualizer
pip install -r requirements.txt
python app.py

Notes

This website has been made using purely vanilla JS, HTML, CSS and Flask. Feedback and contributions are appreciated! Consider adding a ⭐ to this repository to support the project!