Roadmap
Published:
It is a simple implementation a travel planner using graph data structure. This program supports the following functions:
- Creation of an undirected graph with destination names as nodes and time of travel between destinations as weights of the edges.
- Addition of a new destination.
- Addition of a new edge between 2 destinations.
- Calculation of the shortest paths from a source to all destinations using Djikstra’s algorithm.
- Calculation of minimum spanning tree using Prim’s algorithm.
The project can be found here
