public interface IDirectedGraph<T>
| Modifier and Type | Method and Description |
|---|---|
java.util.Iterator<T> |
getNodes()
Which are the nodes of the graph?
|
java.util.Iterator<T> |
getSucessors(T source)
Given a node 'source', which are this nodes children, i.e.
|
java.util.Iterator<T> getSucessors(T source)
source - the source nodejava.util.Iterator<T> getNodes()