Example #1
0
 public Node(T data, NodeList <T> neighbours)
 {
     this.data = data; this.neighbours = neighbours;
 }
Example #2
0
 public Node(T data)
 {
     this.data = data; this.neighbours = null;
 }