Beispiel #1
0
 public AdjacencyVertexNode(
     Edge <VisVertex> edge, AdjacencyVertexNode previous, AdjacencyVertexNode next)
 {
     this.Edge = edge;
     Previous  = previous;
     Next      = next;
 }
Beispiel #2
0
 public AdjacencyVertexNode(Edge <VisVertex> edge)
 {
     this.Edge = edge;
     Previous  = null;
     Next      = null;
 }