https://github.com/karthikudyawar/sorting-visualizer
Sorting Visualizer a GUI based python program to visualize common Sorting Algorithms.
https://github.com/karthikudyawar/sorting-visualizer
gui-application python sorting-visualization tkinter
Last synced: 7 months ago
JSON representation
Sorting Visualizer a GUI based python program to visualize common Sorting Algorithms.
- Host: GitHub
- URL: https://github.com/karthikudyawar/sorting-visualizer
- Owner: KarthikUdyawar
- License: mit
- Created: 2021-06-18T09:51:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T19:00:13.000Z (over 4 years ago)
- Last Synced: 2025-01-29T14:45:54.593Z (8 months ago)
- Topics: gui-application, python, sorting-visualization, tkinter
- Language: Python
- Homepage:
- Size: 253 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README




Sorting-Visualizer
Sorting Visualizer a GUI based python program to visualize common Sorting Algorithms.
Explore the docs »
View Code
·
Report Bug
·
Pull Request
Table of Contents
## About The Project

This project is about visualizing sorting algorithms like Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, Quick Sort, Shell Sort, Radix Sort, Cocktail Sort, Gnome Sort, Heap Sort, Bucket Sort, Bitonic Sort, Tim Sort, Comp sort as well as Bogo Sort. We can select any sorting algorithm and visualize how they sort it. We can also change the array size, minimum and maximum number in an array.
### Built With
* [Python](https://www.python.org/)
### Modules used
* [tkinter](https://docs.python.org/3/library/tkinter.html)
* [random](https://docs.python.org/3/library/random.html)
* [package - (custom)](https://github.com/KarthikUdyawar/Sorting-Visualizer/tree/main/app/package)## Getting Started
### Prerequisites
Make sour app have the latest version of python & pip installed.
* pip
```powershell
-m pip install –upgrade pip.
```### Installation
1. Clone the repo
```bash
git clone https://github.com/KarthikUdyawar/Sorting-Visualizer.git
```
2. Running the app
```powershell
cd app
python main.py
```## Roadmap
See the [network](https://github.com/KarthikUdyawar/Sorting-Visualizer/network) for a list of proposed features from Contributes.
## Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
Distributed under the MIT License. See [`LICENSE`](https://github.com/KarthikUdyawar/Sorting-Visualizer/blob/main/LICENSE) for more information.
## Contact
Instagram : [udyawarkarthik](https://www.instagram.com/udyawarkarthik/)
Github : [https://github.com/KarthikUdyawar](https://github.com/KarthikUdyawar)
## Acknowledgements
* [GeeksforGeeks](https://www.geeksforgeeks.org/sorting-algorithms/)