dijkstra-java-implementation

Please change variable s to start from a different vertex.
Graph Hardcoded (You don't have to use this you can change it):

distances = {a=0, b=3, c=2, d=8, e=10, z=14}
previous = {a=null, b=c, c=a, d=b, e=d, z=d}
(node before
reaching the
destination)



Graph