VertexAdj.java
Iz E-študij, proste zakladnice študentskega znanja
//Vozlisce grafa s seznamom sosedov public class VertexAdj extends Vertex { public EdgeAdj firstEdge ; public VertexAdj nextVertex ; public VertexAdj() { this(null, null, null) ; } public VertexAdj(Object val) { this(val, null, null) ; } public VertexAdj(Object val, VertexAdj nV, EdgeAdj fE) { super(val) ; firstEdge = fE ; nextVertex = nV ; } }