https://github.com/c1m50c/sorting-algorithm-visualizer
Visualizes various sorting algorithms with Python and Matplotlib.
https://github.com/c1m50c/sorting-algorithm-visualizer
algorithm algorithms bubble-sort celluloid comb-sort gnome-sort heap-sort insertion-sort matplotlib merge-sort mit-license python python3 quick-sort rich selection-sort shell-sort sorting-algorithms sorting-visualization visualization
Last synced: 4 months ago
JSON representation
Visualizes various sorting algorithms with Python and Matplotlib.
- Host: GitHub
- URL: https://github.com/c1m50c/sorting-algorithm-visualizer
- Owner: c1m50c
- License: mit
- Created: 2021-10-11T23:09:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-18T22:46:00.000Z (over 3 years ago)
- Last Synced: 2025-01-19T16:42:32.487Z (5 months ago)
- Topics: algorithm, algorithms, bubble-sort, celluloid, comb-sort, gnome-sort, heap-sort, insertion-sort, matplotlib, merge-sort, mit-license, python, python3, quick-sort, rich, selection-sort, shell-sort, sorting-algorithms, sorting-visualization, visualization
- Language: Python
- Homepage:
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# **sorting-algorithm-visualizer**


Visualizes various sorting algorithms with Python and Matplotlib.

## **Installing Prerequisites**
```bash
# See `requirements.txt` for details on required packages.
$ pip install -r requirements.txt
```## **Running**
```bash
$ cd visual-sorting-algorithms # Change directory to repository's.
$ python3 src/main.py # Run the program.Visual Sorting Algorithms
...
```## **Algorithms**
- Insertion Sort
- Selection Sort
- Bubble Sort
- Quick Sort
- Merge Sort
- Gnome Sort
- Shell Sort
- Heap Sort
- Comb Sort