org.jgrapht.alg.BellmanFordShortestPath Maven / Gradle / Ivy
Go to download
JGraphT is a free Java graph library
that provides mathematical graph-theory objects and algorithms
The newest version!
/* ==========================================
* JGraphT : a free Java graph-theory library
* ==========================================
*
* Project Info: http://jgrapht.sourceforge.net/
* Project Creator: Barak Naveh (http://sourceforge.net/users/barak_naveh)
*
* (C) Copyright 2003-2007, by Barak Naveh and Contributors.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
/* -------------------------
* BellmanFordShortestPath.java
* -------------------------
* (C) Copyright 2006-2007, by France Telecom and Contributors.
*
* Original Author: Guillaume Boulmier and Contributors.
* Contributor(s): John V. Sichi
*
* $Id: BellmanFordShortestPath.java 583 2008-01-18 06:42:05Z perfecthash $
*
* Changes
* -------
* 05-Jan-2006 : Initial revision (GB);
* 14-Jan-2006 : Added support for generics (JVS);
*
*/
package org.jgrapht.alg;
import java.util.*;
import org.jgrapht.*;
/**
* Bellman-Ford
* algorithm: weights could be negative, paths could be constrained by a
* maximum number of edges.
*/
public class BellmanFordShortestPath
{
//~ Static fields/initializers ---------------------------------------------
private static final double DEFAULT_EPSILON = 0.000000001;
//~ Instance fields --------------------------------------------------------
/**
* Graph on which shortest paths are searched.
*/
protected Graph graph;
/**
* Start vertex.
*/
protected V startVertex;
private BellmanFordIterator iter;
/**
* Maximum number of edges of the calculated paths.
*/
private int nMaxHops;
private int passNumber;
private double epsilon;
//~ Constructors -----------------------------------------------------------
/**
* Creates an object to calculate shortest paths between the start vertex
* and others vertices using the Bellman-Ford algorithm.
*
* @param graph
* @param startVertex
*/
public BellmanFordShortestPath(Graph graph, V startVertex)
{
this(graph, startVertex, graph.vertexSet().size() - 1);
}
/**
* Creates an object to calculate shortest paths between the start vertex
* and others vertices using the Bellman-Ford algorithm.
*
* @param graph
* @param startVertex
* @param nMaxHops maximum number of edges of the calculated paths.
*/
public BellmanFordShortestPath(
Graph graph,
V startVertex,
int nMaxHops)
{
this(graph, startVertex, nMaxHops, DEFAULT_EPSILON);
}
/**
* Creates an object to calculate shortest paths between the start vertex
* and others vertices using the Bellman-Ford algorithm.
*
* @param graph
* @param startVertex
* @param nMaxHops maximum number of edges of the calculated paths.
* @param epsilon tolerance factor.
*/
public BellmanFordShortestPath(
Graph graph,
V startVertex,
int nMaxHops,
double epsilon)
{
this.startVertex = startVertex;
this.nMaxHops = nMaxHops;
this.graph = graph;
this.passNumber = 1;
this.epsilon = epsilon;
}
//~ Methods ----------------------------------------------------------------
/**
* @param endVertex end vertex.
*
* @return the cost of the shortest path between the start vertex and the
* end vertex.
*/
public double getCost(V endVertex)
{
assertGetPath(endVertex);
lazyCalculate();
BellmanFordPathElement pathElement =
this.iter.getPathElement(endVertex);
if (pathElement == null) {
return Double.POSITIVE_INFINITY;
}
return pathElement.getCost();
}
/**
* @param endVertex end vertex.
*
* @return list of Edge
, or null if no path exists between the
* start vertex and the end vertex.
*/
public List getPathEdgeList(V endVertex)
{
assertGetPath(endVertex);
lazyCalculate();
BellmanFordPathElement pathElement =
this.iter.getPathElement(endVertex);
if (pathElement == null) {
return null;
}
return pathElement.createEdgeListPath();
}
private void assertGetPath(V endVertex)
{
if (endVertex.equals(this.startVertex)) {
throw new IllegalArgumentException(
"The end vertex is the same as the start vertex!");
}
if (!this.graph.containsVertex(endVertex)) {
throw new IllegalArgumentException(
"Graph must contain the end vertex!");
}
}
private void lazyCalculate()
{
if (this.iter == null) {
this.iter =
new BellmanFordIterator(
this.graph,
this.startVertex,
epsilon);
}
// at the i-th pass the shortest paths with less (or equal) than i edges
// are calculated.
for (
;
(this.passNumber <= this.nMaxHops) && this.iter.hasNext();
this.passNumber++)
{
this.iter.next();
}
}
/**
* Convenience method to find the shortest path via a single static method
* call. If you need a more advanced search (e.g. limited by hops, or
* computation of the path length), use the constructor instead.
*
* @param graph the graph to be searched
* @param startVertex the vertex at which the path should start
* @param endVertex the vertex at which the path should end
*
* @return List of Edges, or null if no path exists
*/
public static List findPathBetween(
Graph graph,
V startVertex,
V endVertex)
{
BellmanFordShortestPath alg =
new BellmanFordShortestPath(
graph,
startVertex);
return alg.getPathEdgeList(endVertex);
}
}
// End BellmanFordShortestPath.java