コード例 #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;
 }