- java.lang.Object
-
- org.jgrapht.alg.cycle.TarjanSimpleCycles<V,E>
-
- Type Parameters:
V- the vertex type.E- the edge type.
- All Implemented Interfaces:
DirectedSimpleCycles<V,E>
public class TarjanSimpleCycles<V,E> extends java.lang.Object implements DirectedSimpleCycles<V,E>
Find all simple cycles of a directed graph using the Tarjan's algorithm.See:
R. Tarjan, Enumeration of the elementary circuits of a directed graph, SIAM J. Comput., 2 (1973), pp. 211-216.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.function.Consumer<java.util.List<V>>cycleConsumerprivate Graph<V,E>graphprivate java.util.Set<V>markedprivate java.util.ArrayDeque<V>markedStackprivate java.util.ArrayDeque<V>pointStackprivate java.util.Map<V,java.util.Set<V>>removedprivate java.util.Map<V,java.lang.Integer>vToI
-
Constructor Summary
Constructors Constructor Description TarjanSimpleCycles()Create a simple cycle finder with an unspecified graph.TarjanSimpleCycles(Graph<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 booleanbacktrack(V start, V vertex)private voidclearState()voidfindSimpleCycles(java.util.function.Consumer<java.util.List<V>> consumer)Find the simple cycles of the graph.Graph<V,E>getGraph()Get the graphprivate java.util.Set<V>getRemoved(V v)private voidinitState(java.util.function.Consumer<java.util.List<V>> consumer)voidsetGraph(Graph<V,E> graph)Set the graphprivate java.lang.IntegertoI(V v)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jgrapht.alg.cycle.DirectedSimpleCycles
findSimpleCycles
-
-
-
-
Method Detail
-
findSimpleCycles
public void findSimpleCycles(java.util.function.Consumer<java.util.List<V>> consumer)
Find the simple cycles of the graph.- Specified by:
findSimpleCyclesin interfaceDirectedSimpleCycles<V,E>- Parameters:
consumer- Consumer that will be called with each cycle found.
-
initState
private void initState(java.util.function.Consumer<java.util.List<V>> consumer)
-
clearState
private void clearState()
-
toI
private java.lang.Integer toI(V v)
-
-