Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jackparsonss/sorting-algotihm-visualizer
This repository is a simple sorting algorithm visualizer, made using python and tkinter
https://github.com/jackparsonss/sorting-algotihm-visualizer
algorithm gui python3 sort visualization
Last synced: about 1 month ago
JSON representation
This repository is a simple sorting algorithm visualizer, made using python and tkinter
- Host: GitHub
- URL: https://github.com/jackparsonss/sorting-algotihm-visualizer
- Owner: jackparsonss
- License: gpl-3.0
- Created: 2021-01-11T18:26:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-21T23:52:51.000Z (almost 4 years ago)
- Last Synced: 2024-10-19T08:18:40.983Z (3 months ago)
- Topics: algorithm, gui, python3, sort, visualization
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sorting-Algotihm-Visualizer
In this repository I used the python module tkinter to implement a graphical user interface where users can visually see how different popular sorting algorithms work.
This app allows the user to select a certain algorithm, the speed of the algorithm and the size of the data being sorted### How to run the program:
python visualizer.py### Algorithms Implemented in the App:
* Bubble Sort
* Insertion Sort
* Merge Sort
* Quick Sort
* Selection Sort
* Shell Sort