Example #1
0
 public Neighbor(Neighbor nbr)
 {
     next = nbr;
 }
Example #2
0
 public Neighbor(int num, Neighbor nbr)
 {
     this.vertexNum = num;
     next           = nbr;
 }