struct Ternary {
char current;
bool wordend;
Ternary* left;
Ternary* mid;
Ternary* right;
Ternary(char c='@',Ternary* l=NULL, Ternary* m=NULL, Ternary* r=NULL,bool end=false)
{
wordend=end;
current=c;
left=l;
mid=m;
right=r;
}
};
void add(Ternary* t, string s, int i) {
if (t == NULL) {
Ternary* temp = new Ternary(s[i],NULL,NULL,NULL,false);
t=temp;
}
if (s[i] < t->current) {
add(t->left,s,i);
}
else if (s[i] > t->current) {
add(t->right,s,i);
}
else
{
if (i + 1 == s.length()) {
t->wordend = true;
}
else
{
add(t->mid,s,i+1);
}
}
}
Cuando agrego secuencia de palabras utilizando add()
la cadena están consiguiendo imprime dentro if(t==NULL)
segmento, pero el árbol no está consiguiendo es decir nodos están formados no conseguir vinculado.ternario Búsqueda Árbol
o declarar argumento como complemento (ternario ** t, cadena s, int i) y luego hago * t = temperatura –
En lugar de utilizar la temperatura, también probé el siguiente declaración t = new Ternary (s [i]); Y si uso tree = ... entonces estoy perdiendo mi nodo raíz del árbol – CoderXX
@Pratik: sin cambiar nada en tu código excepto poniendo 'return t;' al final de 'add()' y usando 'add 'como indiqué, no perderás nada. – Mat