https://github.com/gsauc3/algorithm_visualizer
A GUI program to visualize sorting algorithms
https://github.com/gsauc3/algorithm_visualizer
bubble-sort gui-application insertion-sort mergesort python python3 quicksort selection-sort sorting-algorithm-visualizations sorting-algorithms sorting-visualization tkinter
Last synced: 3 months ago
JSON representation
A GUI program to visualize sorting algorithms
- Host: GitHub
- URL: https://github.com/gsauc3/algorithm_visualizer
- Owner: GSAUC3
- License: mit
- Created: 2021-10-12T19:59:43.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T17:33:57.000Z (about 2 years ago)
- Last Synced: 2025-03-28T01:50:36.972Z (3 months ago)
- Topics: bubble-sort, gui-application, insertion-sort, mergesort, python, python3, quicksort, selection-sort, sorting-algorithm-visualizations, sorting-algorithms, sorting-visualization, tkinter
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 27
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Sorting Algorithm Visualizer

***
### A gui application to visualize various sorting algorithms using pure python.
How you can use it:
- Fork & clone this repo in your local machine
- Run the following two commands and you are done. It's that easy.```
pip install -r requirements.txt
```
```
python main.py
```
Or python3 based on the OS you are on.
***
### Sorting algorithms Covered
- Bubble Sort
- Insertion Sort
- Selection Sort
- Merge Sort
- Quick Sort***