Package org.jgrapht.alg.cycle
Class SzwarcfiterLauerSimpleCycles<V,E>
- java.lang.Object
-
- org.jgrapht.alg.cycle.SzwarcfiterLauerSimpleCycles<V,E>
-
- Type Parameters:
V- the vertex type.E- the edge type.
- All Implemented Interfaces:
DirectedSimpleCycles<V,E>
public class SzwarcfiterLauerSimpleCycles<V,E> extends java.lang.Object implements DirectedSimpleCycles<V,E>
Find all simple cycles of a directed graph using the Schwarcfiter and Lauer's algorithm.See:
J.L.Szwarcfiter and P.E.Lauer, Finding the elementary cycles of a directed graph in O(n + m) per cycle, Technical Report Series, #60, May 1974, Univ. of Newcastle upon Tyne, Newcastle upon Tyne, England.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<V,java.util.Set<V>>bSetsprivate java.util.List<java.util.List<V>>cyclesprivate DirectedGraph<V,E>graphprivate V[]iToVprivate java.util.Set<V>markedprivate int[]positionprivate boolean[]reachprivate java.util.Map<V,java.util.Set<V>>removedprivate java.util.ArrayDeque<V>stackprivate java.util.List<V>startVerticesprivate java.util.Map<V,java.lang.Integer>vToI
-
Constructor Summary
Constructors Constructor Description SzwarcfiterLauerSimpleCycles()Create a simple cycle finder with an unspecified graph.SzwarcfiterLauerSimpleCycles(DirectedGraph<V,E> graph)Create a simple cycle finder for the specified graph.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidclearState()private booleancycle(int v, int q)java.util.List<java.util.List<V>>findSimpleCycles()Finds the simple cycles of the graph.
Note that the full algorithm is executed on every call since the graph may have changed between calls.private java.util.Set<V>getBSet(V v)DirectedGraph<V,E>getGraph()Returns the graph on which the simple cycle search algorithm is executed by this object.private java.util.Set<V>getRemoved(V v)private voidinitState()private voidnoCycle(int x, int y)voidsetGraph(DirectedGraph<V,E> graph)Sets the graph on which the simple cycle search algorithm is executed by this object.private java.lang.IntegertoI(V v)private VtoV(int i)private voidunmark(int x)
-
-
-
Field Detail
-
graph
private DirectedGraph<V,E> graph
-
cycles
private java.util.List<java.util.List<V>> cycles
-
iToV
private V[] iToV
-
vToI
private java.util.Map<V,java.lang.Integer> vToI
-
stack
private java.util.ArrayDeque<V> stack
-
marked
private java.util.Set<V> marked
-
position
private int[] position
-
reach
private boolean[] reach
-
startVertices
private java.util.List<V> startVertices
-
-
Constructor Detail
-
SzwarcfiterLauerSimpleCycles
public SzwarcfiterLauerSimpleCycles()
Create a simple cycle finder with an unspecified graph.
-
SzwarcfiterLauerSimpleCycles
public SzwarcfiterLauerSimpleCycles(DirectedGraph<V,E> graph)
Create a simple cycle finder for the specified graph.- Parameters:
graph- - the DirectedGraph in which to find cycles.- Throws:
java.lang.IllegalArgumentException- if the graph argument isnull.
-
-
Method Detail
-
getGraph
public DirectedGraph<V,E> getGraph()
Returns the graph on which the simple cycle search algorithm is executed by this object.- Specified by:
getGraphin interfaceDirectedSimpleCycles<V,E>- Returns:
- The graph.
-
setGraph
public void setGraph(DirectedGraph<V,E> graph)
Sets the graph on which the simple cycle search algorithm is executed by this object.- Specified by:
setGraphin interfaceDirectedSimpleCycles<V,E>- Parameters:
graph- the graph.
-
findSimpleCycles
public java.util.List<java.util.List<V>> findSimpleCycles()
Finds the simple cycles of the graph.
Note that the full algorithm is executed on every call since the graph may have changed between calls.- Specified by:
findSimpleCyclesin interfaceDirectedSimpleCycles<V,E>- Returns:
- The list of all simple cycles. Possibly empty but never
null.
-
cycle
private boolean cycle(int v, int q)
-
noCycle
private void noCycle(int x, int y)
-
unmark
private void unmark(int x)
-
initState
private void initState()
-
clearState
private void clearState()
-
toI
private java.lang.Integer toI(V v)
-
toV
private V toV(int i)
-
-