A Python package for visualizing sorting algorithms
Project description
PopUpSort
With the assistance of ChatGPT-3.5, I was able to create this sorting visualizer.
The PopUpSort package is a Python package that visualizes the sorting algorithms: bubble sort, selection sort, and insertion sort. The package uses the Tkinter library for the graphical user interface.
Requirements
- Python 3.x
- tkinter library (included in most Python installations)
Installation
Method 1: Using pip
pip install popupsort
Method 2: Download the source code, then open terminal in the downloaded folder (where setup.py is) and run
pip install .
Usage
First import the package
import popupsort as pus
Syntax
pus.sort(array, algorithm, speed) # Sorting an already defined array
pus.sort_rand(size, min, max, algorithm, speed) # Auto generate an array and sort it
Algorithms
Replace 'algorithm' argument with any of these options:
- 'Bubble Sort' or 'b'
- 'Selection Sort' or 's'
- 'Insertion Sort' or 'i'
- 'Quick Sort' or 'q'
- 'Merge Sort' or 'm'
- 'Heap Sort' or 'h'
- 'Shell Sort' or 'sh'
Examples
arr = [60,24,21,65,93,56,35,10,55,49,86,76] # Define an array
pus.sort(arr, 'b', 0.02) # Visualize the bubble sort of this array with a speed of 0.02s
pus.sort_rand(50, 1, 100, 'i') # Generate an array of size 50 with elements ranging from 1 to 100 and sort it using insertion sort, speed is 0.01 by default
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
popupsort-1.3.3.tar.gz
(5.3 kB
view hashes)