24 ShortestPathAlgorithm-091
24 ShortestPathAlgorithm-091
• Thus, the problem is well defined for a graph that contains non-
negative weights.
Is the shortest path problem well defined? - Cont'd
• Things get difficult for a graph with negative weights.
• The problem gets even worse if the graph has a negative cost cycle.
e.g. {D, A, C, D}
• A solution can be found even for negative-weight graphs but not for
graphs involving negative cost cycles.
{D, A, C, D, A, C, E, F} = 2
{D, A, C, D, A, C, D, A, C, E, F} = 0
The Dijkstra's Algorithm
• Dijkstra's algorithm solves the single-source shortest
path problem for a non-negative weights graph.
T= T – {v};
for(each vertex u adjacent to v and in T){
if(currentDistance(s-u) > currentDistance(s-v) + weight(edge(vu)){
currentDistance(s-u) = currentDistance(s-v) + weight(edge(vu));
predecessor(u) = v;
}
}
}
Example
:Tracing Dijkstra’s algorithm starting at vertex B
Entry(){
known = false;
distance = Integer.MAX_VALUE;
predecessor = null;
}
}
Implementation of Dijkstra's Algorithm
• The dijkstrasAlgorithm method shown below takes two arguments, a
directed graph and the starting vertex.
• The method returns a vertex-weighted Digraph from which the
shortest path from s to any vertex can be found.
• Since in each pass, the vertex with the smallest known distance is
chosen, a minimum priority queue is used to store the vertices.
table[g.getIndex(start)].distance = 0;
PriorityQueue queue = new BinaryHeap(
g.getNumberOfEdges());
queue.enqueue(new Association(new Integer(0), start));
Implementation of Dijkstra's Algorithm - Cont'd
while(!queue.isEmpty()) {
Association association = (Association)queue.dequeueMin();
Vertex v1 = (Vertex) association.getValue();
int n1 = g.getIndex(v1);
if(!table[n1].known){
table[n1].known = true;
Iterator p = v1.getEmanatingEdges();
while (p.hasNext()){
Edge edge = (Edge) p.next();
Vertex v2 = edge.getMate(v1);
int n2 = g.getIndex(v2);
Integer weight = (Integer) edge.getWeight();
int d = table[n1].distance + weight.intValue();
if(table[n2].distance > d){
table[n2].distance = d;
table[n2].predecessor = v1;
queue.enqueue(new Association(d, v2));
}
}
}
}
Implementation of Dijkstra's Algorithm Cont'd
Graph result = new GraphAsLists(true);//Result is Digraph
Iterator it = g.getVertices();
while (it.hasNext()){
Vertex v = (Vertex) it.next();
result.addVertex(v.getLabel(),
new Integer(table[g.getIndex(v)].distance));
}
it = g.getVertices();
while (it.hasNext()){
Vertex v = (Vertex) it.next();
if (v != start){
String from = v.getLabel();
String to = table[g.getIndex(v)].predecessor.getLabel();
result.addEdge(from, to);
}
}
return result;
}
Review Questions
• Use the graph Gc shown above to trace the execution of Dijkstra's algorithm as
it solves the shortest path problem starting from vertex a.
• Dijkstra's algorithm works as long as there are no negative edge weights. Given
a graph that contains negative edge weights, we might be tempted to eliminate
the negative weights by adding a constant weight to all of the edges. Explain
why this does not work.
• Dijkstra's algorithm can be modified to deal with negative edge weights (but not
negative cost cycles) by eliminating the known flag and by inserting a vertex
back into the queue every time its tentative distance decreases. Implement
this modified algorithm.