Link to our web app: https://www.graphvizer.com/
The web app we created allows the user to create a graph of their choosing. Once they have done so, they can toggle over to the algorithms tab to simulate an algorithm on their graph, or gain information about their graph. Currently, the following are available to the users:
- An iterative simulation of major graph algorithms
- A list of the cut vertices of the graph (found with hopcroft-tarjan's biconnected components algorithm)
- A minimum spanning tree of the graph (found with kruskal's algorithm)
How to use:
- cd into graph-visualizer
- Run npm build then npm start
- localhost will start running the app in your browser