Ejemplo n.º 1
0
 TreeNode(TreeNode left, TreeNode right, int item)
 {
     this.next = new Next();
     this.next.left = left;
     this.next.right = right;
     this.item = item;
 }
Ejemplo n.º 2
0
 TreeNode(int item)
 {
     this.item = item;
     this.next = null;
 }
Ejemplo n.º 3
0
 TreeNode(int item)
 {
     this.item = item;
     this.next = null;
 }