https://github.com/myphz/sortvisualizer
Sort Visualizer Web App
https://github.com/myphz/sortvisualizer
algorithms css html-css-javascript html5 javascript sort sorting sorting-algorithms sorting-visualization
Last synced: 5 months ago
JSON representation
Sort Visualizer Web App
- Host: GitHub
- URL: https://github.com/myphz/sortvisualizer
- Owner: Myphz
- License: mit
- Created: 2021-04-01T21:07:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T21:59:18.000Z (about 1 year ago)
- Last Synced: 2025-03-30T18:12:14.886Z (6 months ago)
- Topics: algorithms, css, html-css-javascript, html5, javascript, sort, sorting, sorting-algorithms, sorting-visualization
- Language: JavaScript
- Homepage: https://www.sortvisualizer.com
- Size: 3.06 MB
- Stars: 127
- Watchers: 1
- Forks: 25
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://www.sortvisualizer.com/docs). 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.
```console
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 :star: to this repository to support the project!