@ -206,6 +206,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -206,6 +206,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
}
Node<E>c=createNode(e,parent,null,null);
parent.setLeft(c);
size++;
returnc;
}
@ -217,6 +218,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -217,6 +218,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
}
Node<E>c=createNode(e,parent,null,null);
parent.setRight(c);
size++;
returnc;
}
@ -240,17 +242,42 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -240,17 +242,42 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
if(!t1.isEmpty()){
t1.root.setParent(node);
node.setLeft(t1.root);
// empty out t1
t1.root=null;
t1.size=0;
}
if(!t2.isEmpty()){
t2.root.setParent(node);
node.setRight(t2.root);
// empty out t2
t2.root=null;
t2.size=0;
}
}
/** Prune the entire subtree rooted at position p. */