示例#1
0
文件: Node2.cs 项目: vmshenoy/AlgoRev
 public Node2(T data)
 {
     this.Value = data;
     Next       = null;
     Previous   = null;
 }
示例#2
0
文件: Node2.cs 项目: vmshenoy/AlgoRev
 public Node2()
 {
     Next     = null;
     Previous = null;
 }