예제 #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;
 }