Editing Dijkstra's algorithm

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 26: Line 26:
 
           dist[w] = min(dist[w],dist[v]+wt(v,w))
 
           dist[w] = min(dist[w],dist[v]+wt(v,w))
 
</pre>
 
</pre>
Following the completion of this code, the <code>dist</code> array will contain the minimum path lengths from <code>s</code> to each vertex, or <math>\infty</math> if no such path exists for a given vertex.
 
  
 
===Analysis===
 
===Analysis===
Line 52: Line 51:
  
 
Using a [[Fibonacci heap]] implementation, which supports amortized constant time insertion, we can improve this to <math>O(E + V \log V)</math>.
 
Using a [[Fibonacci heap]] implementation, which supports amortized constant time insertion, we can improve this to <math>O(E + V \log V)</math>.
 
==Singly constrained variant==
 
Dijkstra's algorithm can solve the ''singly constrained shortest path problem''. In this problem, each edge has ''two'' nonnegative weights, a length and a cost, and we wish to minimize path length subject to the constraint that the total cost must not exceed <math>C</math>. The code looks very similar:
 
<pre>
 
input G,s
 
for each v ∈ V(G)
 
    let dist[v] = ∞
 
    let mincost[v] = ∞
 
add (s,0,0) to Q
 
while Q is nonempty
 
    let (v,d,c) ∈ Q such that c is minimal
 
    remove (v,d,c) from Q
 
    if d &lt; dist[v]
 
          dist[v] = d
 
          for each w ∈ V(G) such that (v,w) ∈ E(G) and c + cost(v,w) &le; C
 
              add (w,d+wt(v,w),c+cost(v,w)) to Q
 
</pre>
 
Following completion of this code, the <code>dist</code> array holds the minimum path lengths found, and the <code>mincost</code> array holds the cost, for each vertex, required to achieve the minimum distance.
 
  
 
==References==
 
==References==

Please note that all contributions to PEGWiki are considered to be released under the Attribution 3.0 Unported (see PEGWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)