Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.

Algorithms on graphs displayed in a pretty manner - try popular algorithms like Breadth First Search, Dijkstra, etc. with a visual representation. ✨

License

Notifications You must be signed in to change notification settings

MattMoony/pretty-graph-algorithms

Folders and files

NameName
Last commit message
Last commit date
Jun 20, 2020
Jul 12, 2020
Jul 12, 2020
Jun 19, 2020
Jun 24, 2020
Jun 20, 2020
Jul 17, 2020
Jul 12, 2020
Jun 19, 2020
Jun 11, 2021
Jun 19, 2020
Jun 21, 2020
Jun 19, 2020

Repository files navigation

Pretty Graph Algorithms

Graph go brrrr


About

A small project to give nice visual representations of several popular/efficient algorithms on graphs. I enjoy looking at it just as much as I do. (Also, it was nice to brush up on my TypeScript, npm, webpack, etc. skills ^^).

Demo

You should be able to find a live-demo here.

Roadmap

  • Controls
    • Algorithm Selection
    • Speed control
  • Algorithms
    • Path finding
      • Depth-First-Search
      • Shortest Path
        • Breadth-First-Search
        • Dijkstra's Algorithm
        • A* Algorithm
        • Bellman-Ford Algorithm
        • Floyd-Warshall Algorithm
    • Minimum Spanning Tree (MST)
      • Prim's Algorithm
      • Kruskal's Algorithm
    • Lowest Common Ancestor (LCA)
      • Binary Lifting
      • Euler Tour
  • Core
    • Classes
      • Graph
      • Node
      • Edge
      • Canvas
      • PriorityQueue
    • Interfaces
      • Pair

... Matthias M. (June 2020)