public interface DirectedGraph<N> extends Iterable<N>
Modifier and Type | Method and Description |
---|---|
List<N> |
getHeads()
Returns a list of entry points for this graph.
|
List<N> |
getPredsOf(N s)
Returns a list of predecessors for the given node in the graph.
|
List<N> |
getSuccsOf(N s)
Returns a list of successors for the given node in the graph.
|
List<N> |
getTails()
Returns a list of exit points for this graph.
|
Iterator<N> |
iterator()
Returns an iterator for the nodes in this graph.
|
int |
size()
Returns the node count for this graph.
|
forEach, spliterator