I'm coding something I thought was simple for my programming class but I'm a little stuck :S, could someone take a look at my code, and help me? Thx
Der = right;
Izq = left;
public boolean eliminaDatoABB(T dato){
if(this.isEmpty()||this.containsABBRecursivo(dato)==false)
return false;
return eliminaDatoABBUtil(this.raiz, dato);
}
private boolean deleteDatumABBUtil(NodeTree<T> nodo, T datum){
if(nodo==null)
return false;
int i = nodo.nodeValue.compareTo(dato);
if(i==0){ //Found it
//Cases
if(isLeaf(nodo)){ //Is leaf
nodo=null;
return true;
}
else
if((hasChildRight(nodo)&&!hasChildLeft(nodo))){ //Has just one child at right
NodoArbol<T> tmp = new NodoArbol<T>(nodo.der.nodeValue);
tmp.der=nodo.der.der;
tmp.izq=nodo.der.izq;
nodo=tmp;
//The trash collector should then delete the nodo.der
return true;
}
else
if((!hasChildRight(nodo)&&hasChildLeft(nodo))){ //Has just one child at left
NodoArbol<T> tmp = new NodoArbol<T>(nodo.izq.nodeValue);
tmp.izq=nodo.izq.izq;
tmp.der=nodo.izq.der;
nodo=tmp;
//The trash collector should then delete the nodo.izq
return true;
}
else{ //Has two children
NodoArbol<T> tmp = this.predecesor(nodo);
tmp.der=nodo.der;
tmp.izq=nodo.izq;
return deleteDatumABB(nodo.izq.nodeValue);
}
}
else{ //Search the datum
if(i>0)
return deleteDatumABBUtil(nodo.izq, dato);
else
return deleteDatumABBUtil(nodo.der, dato);
}
}
//Bonus Methods
public boolean isLeaf(NodeTree<T> nodo){
return (nodo.der==null&&nodo.izq==null);
}
public boolean hasChildRight(NodeTree<T> nodo){
return nodo.der!=null;
}
public boolean hasChildLeft(NodeTree<T> nodo){
return nodo.izq!=null;
}
It doesn't work for any of the 3 cases :S