@ -82,7 +82,10 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -82,7 +82,10 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
/** Factory function: make a new node storing element e. */
@ -130,8 +133,15 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -130,8 +133,15 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
// root, right,
// left, parent
/** Returns the position of tree root. */
publicPosition<E>root(){
/**Returnsthepositionoftreeroot.
*
*:(
*Thisdoesn'tworkwhenitisPosition<E>.
*symbolgetLeft()can'tbecalledonaPosition<E>.
*so,root().getLeft()noworks...
*NowthisJOOPisgettingmessy.
**/
publicNode<E>root(){
returnroot;
}
@ -174,6 +184,42 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -174,6 +184,42 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
/** Clone a binary tree - public interface method. */
publicLinkedBinTree<E>clone(){
// Create new clone tree:
// One root node.
LinkedBinTree<E>newt=newLinkedBinTree<E>();
newt.addRoot(this.root.getElement());
Position<E>origroot=this.root;
Position<E>cloneroot=newt.root;
// Populate clone tree:
// Bottom-up, post-order traversal through original tree.
@ -261,20 +307,23 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -261,20 +307,23 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
publicvoidpruneSubtree(Position<E>p){
Node<E>node=validate(p);
// Enumerate the subtree with a preorder iterator
intcount=0;
for(Position<E>pos:preorder(p)){
count++;
}
System.out.println("Removing subtree of size "+count);
size-=count;
node.setLeft(null);
node.setRight(null);
// how does an object commit suicide?
// what if something obscure points at the data?
// How does an object commit suicide?
// What if something obscure points at the data?
// In a tree, we don't have to worry about that.
if(!isRoot(p)){
// Target's children are Xed.
// Now Target's parents need to be scrubbed of Target.
Node<E>par=parent(p);
if(par.getLeft()==p){
par.setLeft(null);
@ -289,6 +338,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {
@@ -289,6 +338,7 @@ public class LinkedBinTree<E> extends AbstractBinaryTree<E> {