This project is a web application that provides a visual simulation of graph algorithms and allows users to construct graphs based on provided data. It visualizes graph algorithms in an interactive and graphical manner.
- Support for finding the "MST - Minimum Spanning Tree" on weighted graphs.
- Shortest path problem with BFS (unweighted graph), dijikastra (weighted graph)
- Check the existence of a Hamiltonian Cycle in a graph.
- Perform graph traversal using DFS and BFS.
- ...
- React.js: For building the user interface.
- Tailwind/CSS: For styling and layout design.
- TypeScript: The main programming language.
- Clone this repository:
git clone
- Install the required dependencies
npm install
- Run the application at http://localhost:3000/:
npm start