Package com.jgalgo.alg.cycle
Interface CyclesEnumerator
-
- All Known Implementing Classes:
CyclesEnumeratorAbstract
,CyclesEnumeratorJohnson
,CyclesEnumeratorTarjan
public interface CyclesEnumerator
An algorithm that enumerate all cycles in a graph.Given a graph G=(V,E), a cycle is a path P=(v1,v2,…,vk),vi∈V,(vi,vi+1)∈E such that v1=vk. There might be exponentially many cycles in a graph, and algorithms implementing this interface enumerate over all of them (use an
Iterator
avoiding storing all of them in memory).Use
newInstance()
to get a default implementation of this interface.- Author:
- Barak Ugav
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description <V,E>
Iterator<Path<V,E>>cyclesIter(Graph<V,E> g)
Iterate over all cycles in the given graph.static CyclesEnumerator
newInstance()
Create a new algorithm for cycles enumerating.
-
-
-
Method Detail
-
cyclesIter
<V,E> Iterator<Path<V,E>> cyclesIter(Graph<V,E> g)
Iterate over all cycles in the given graph.If
g
isIntGraph
, the returned iterator will iterate overIPath
objects.- Type Parameters:
V
- the vertices typeE
- the edges type- Parameters:
g
- a graph- Returns:
- an iterator that iteration over all cycles in the graph
-
newInstance
static CyclesEnumerator newInstance()
Create a new algorithm for cycles enumerating.This is the recommended way to instantiate a new
CyclesEnumerator
object.- Returns:
- a default implementation of
CyclesEnumerator
-
-