Skip to content

Latest commit

 

History

History
134 lines (109 loc) · 4.05 KB

README.md

File metadata and controls

134 lines (109 loc) · 4.05 KB

AlgoVisualizer

AlgoVisualizer

Built to help visualize common computer science algorithms.
Report Bug · Request Feature

Demo of DFS, BFS, and Dijkstra's

Table of Contents

  1. About The Project
  2. Getting Started
  3. License
  4. Contact

About The Project

Overview

AlgoVisualizer is built for visualizing common sorting and path-finding algorithms. Some examples include: quick sort, merge sort, counting sort, DFS, and Dijkstra's algorithm. All algorithms are implemented in Python and are displayed using the Pygame library.

Built With

  • Python
  • Pygame

Getting Started

To get a local copy up and running, follow these simple steps.

Prerequisites

  • Verify if python (Version >= 3.8) is installed. Previous versions may also work.

    python --version
  • Verify if pip is installed

    pip --version

Installation and Setup

  1. Clone the repo
    git clone https://github.com/dgobalak/AlgoVisualizer.git
  2. Create a virtual environment
    python -m venv .venv
  3. Activate the virtual environment
    .venv\scripts\activate
  4. Install dependencies
    pip install -r requirements.txt
  5. Start the app.
    python main.py

License

Distributed under the Apache 2.0 License . See LICENSE for more information.

Contact