Package org.drip.sample.shortestpath
Class JohnsonSingleSourceNegativeWeight
java.lang.Object
org.drip.sample.shortestpath.JohnsonSingleSourceNegativeWeight
public class JohnsonSingleSourceNegativeWeight
extends java.lang.Object
JohnsonSingleSourceNegativeWeight illustrates the Shortest Path Generation for a Directed Graph
using the Johnson Algorithm for a given Source with Negative Weight. The References are:
- Black, P. E. (2004): Johnson's Algorithm https://xlinux.nist.gov/dads/HTML/johnsonsAlgorithm.html
- Cormen, T., C. E. Leiserson, R. Rivest, and C. Stein (2009): Introduction to Algorithms 3rd Edition MIT Press
- Johnson, D. B. (1977): Efficient Algorithms for Shortest Paths in Sparse Networks Journal of the ACM 24 (1) 1-13
- Suurballe, J. W. (1974): Disjoint Paths in a Network Networks 14 (2) 125-145
- Wikipedia (2019): Johnson's Algorithm https://en.wikipedia.org/wiki/Johnson%27s_algorithm
- Module = Computational Core Module
- Library = Graph Algorithm Library
- Project = DROP API Construction and Usage
- Package = Source Destination Shortest Path Algorithms
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description JohnsonSingleSourceNegativeWeight()
-
Method Summary
Modifier and Type Method Description static void
main(java.lang.String[] argumentArray)
Entry PointMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
JohnsonSingleSourceNegativeWeight
public JohnsonSingleSourceNegativeWeight()
-
-
Method Details
-
main
public static final void main(java.lang.String[] argumentArray) throws java.lang.ExceptionEntry Point- Parameters:
argumentArray
- Command Line Argument Array- Throws:
java.lang.Exception
- Thrown on Error/Exception Situation
-