()
| 30 | /** Data structures for graphs represented with an adjacency list. */ |
| 31 | public abstract class Graph { |
| 32 | public abstract int numVertices(); |
| 33 | |
| 34 | /** Return an iterator of vertex IDs with an edge from srcVid. */ |
| 35 | public abstract IntIterator dstIter(int srcVid); |