Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 709 Bytes

File metadata and controls

40 lines (30 loc) · 709 Bytes

Sorting Algorithm Runtime Visualizer

This project visualizes and compares the runtime of different sorting algorithms using a Matplotlib bar chart inside a Tkinter GUI.

Requirements

  • Python 3.12+
  • See requirements.txt for dependencies

Setup Instructions

1. Clone this repository

git clone <your-repo-url>
cd sort-algorithm-runtime-visualizer

2. (Optional) Create and activate a virtual environment

macOS/Linux

python3 -m venv .venv
source .venv/bin/activate

Windows

python -m venv .venv
.venv\Scripts\activate

3. Install dependencies

pip install -r requirements.txt

4. Run the application

python main.py