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.
- 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
It's also possible to design and visualize your own sorting algorithm, using the documented APIs. Have fun messing around and trying new stuff!
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
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!