An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# **sorting-algorithm-visualizer**

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/c1m50c/sorting-algorithm-visualizer/Tests?style=for-the-badge)
![License](https://img.shields.io/github/license/c1m50c/sorting-algorithm-visualizer?color=blue&style=for-the-badge)
![Lines of code](https://img.shields.io/tokei/lines/github/c1m50c/sorting-algorithm-visualizer?style=for-the-badge)

Visualizes various sorting algorithms with Python and Matplotlib.

![Preview Image](https://raw.githubusercontent.com/c1m50c/sorting-algorithm-visualizer/assets/preview.gif)

## **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