예제 #1
0
파일: BinTree.cs 프로젝트: obarmatz/Calc1
 public BinTree(Object Val, BinTree<Object> Right, BinTree<Object> Left)
 {
     this.Val = Val;
     this.Right = Right;
     this.Left = Left;
 }