Java: Prim's with Fibonacci heap? (JGraphT)

1.5k views Asked by At
1

There are 1 answers

0
Wang On BEST ANSWER

You'd have to write a wrapper class to rename the methods, since (from a cursory look through the JGraphT Javadocs) it doesn't looks like these developers implemented the Queue interface. So you have to write a method called offer that just calls insert, and so on. (Since this is open-source, you should consider making your edits right in the class itself, and sending the project your code when you're done.)