This is a python script for visualizing the sorting algorithms using python tkinter module.
Use the package manager pip to install tkinter.
pip install python-tk
Tkinter is the standard GUI library for Python. Python when combined with Tkinter provides a fast and easy way to create GUI applications. Tkinter provides a powerful object-oriented interface to the Tk GUI toolkit.
- Quick Sort (Time Complexity : N logN)
- Merge Sort (Time Complexity : N logN)
- Insertion Sort (Time Complexity : N ^ 2)
- Selection Sort (Time Complexity : N ^ 2)
- Bubble Sort (Time Complexity : N ^ 2)
Want to know more about these algorithms visit GFG
- The .exe file is uploaded in the repository which can be downloaded and can be run on a windows operating system.