Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a generic Java implementation of Dijkstra's algorithm. I've tried coding this up on my own, but I keep running into problems. If it helps, I know for a fact that the graph is always connected. Does anyone know of such an implementation?

Thanks!

share|improve this question

4 Answers

up vote 3 down vote accepted

Here you go: Dijkstra's algorithm (Java)

share|improve this answer

This is totally shameless, but I coded up an implementation of Dijkstra's algorithm using Fibonacci heaps a while back and posted it to my personal website. You can find the code here:

I've tried to comment the code to indicate how the algorithm works, what assumptions it's making, etc., so hopefully it's easy to read and understand. Let me know if there's anything about it I can clarify for you.

Hope this helps!

share|improve this answer
i needed for directionless simple connected graphs :) – MozenRath Aug 25 '11 at 21:38
1  
@Piyush- You can represent an undirected graph using a directed graph - just have each pair of connected nodes point to each other. – templatetypedef Aug 25 '11 at 21:41

JGrapht is a common Java library for graphs. dijkstra's algorithm is implemented too.

share|improve this answer

do you mean this:

(the JAVA implementation can be found at mentioned link (see bottom of this answer)

// initialize d to infinity, π and Q to empty
d = ( ∞ )
π = ()
S = Q = ()

add s to Q
d(s) = 0

while Q is not empty
{
     u = extract-minimum(Q)
     add u to S
     relax-neighbors(u)
}

relax-neighbors(u)
{
     for each vertex v adjacent to u, v not in S
     {
          if d(v) > d(u) + [u,v]    // a shorter distance exists
          {
               d(v) = d(u) + [u,v]
               π(v) = u
               add v to Q
          }
     }
}

extract-minimum(Q)
{
    find the smallest (as defined by d) vertex in Q
    remove it from Q and return it
}

edit: got this from http://renaud.waldura.com/doc/java/dijkstra/

share|improve this answer
4  
That's not compiling in my version of java. What version are you using? – Patrick87 Aug 25 '11 at 21:31
I think the OP is specifically looking for Java code rather than pseudocode; the question suggests that the OP has found pseudocode but is having trouble translating it to Java. – templatetypedef Aug 25 '11 at 21:31
the Java implementation can be found at the link :) – Karel-Jan Misseghers Aug 25 '11 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.