示例#1
0
文件: Node.cs 项目: vukisic/CSharp
 public Node(T data, NodeList <T> neighbours)
 {
     this.data = data; this.neighbours = neighbours;
 }
示例#2
0
文件: Node.cs 项目: vukisic/CSharp
 public Node(T data)
 {
     this.data = data; this.neighbours = null;
 }