Esempio n. 1
0
 public BinaryTree(T value, BinaryTree <T> left, BinaryTree <T> right)
 {
     this.Value      = value;
     this.LeftChild  = left;
     this.RightChild = right;
 }