Beispiel #1
0
 public GraphNode(T value, NodeList <T> neighbors) : base(value, neighbors)
 {
 }
Beispiel #2
0
 public Node(T data, NodeList <T> neighbors)
 {
     this.data      = data;
     this.neighbors = neighbors;
 }