找到时无法返回树节点

Can't returning a tree node when is found

我如何return找到一个树节点?

所以,我有一个二叉树,当我在树中搜索我搜索的内容时,我想 return 指向该节点的指针,这样我就可以在其他函数中使用该节点。有我的搜索功能:

Tnode *Tsearch(Tnode *r, char *word) {
    if(r == NULL) {
        printf("%s NOT FOUND\n", word);
        return NULL;
    }
    int comp = strcasecmp(r->word, word);
    if( comp == 0) {
        printf("%s FOUND\n", r->word);
        return r;
    }
    else if( comp > 0) {
        Tsearch(r->left, word);
    }
    else if( comp < 0) {
        Tsearch(r->right, word);
    }
    return 0;
}

我的问题是,当我尝试使用函数 Tsearch 的 return 时,它不起作用,我真的不明白为什么以及如何解决它。

我想使用搜索功能中 returned 节点的功能如下:

int Tsearch_ref(Tnode *r, char (*words)[30]) {
    if(r == NULL) {
        return 0;
    }
    printf("%s, %d", words[0], (int)strlen(words[0]));
    Tsearch(r,words[0]);
    auxT = Tsearch(r,words[0]);
    Lnode *aux = auxT->head;
    printf("Title: %s\n", ((Book *)aux->ref)->title);
    while(aux != NULL) {
        aux_arr[i].ref=aux->ref;
        printf("Title: %s\n", ((Book *)aux_arr[i].ref)->title);
        printf("%p\n", &(aux_arr[i].ref));
        aux = aux->next;
        i++;
    }
}

这个函数不完整,因为我试图解决 return 问题,但基本上我想把里面有一个列表的树节点放到一个临时数组中。

结构如下:

typedef struct {
    char *title;
    char isbn13[ISBN13_SIZE];
    char *authors;
    char *publisher;
    int year;
} Book;

typedef struct lnode {
    struct lnode *next;
    void *ref;
} Lnode;


typedef struct tnode {
    struct tnode *left;
    struct tnode *right;
    char *word;
    Lnode *head;
} Tnode;

这是我在 Whosebug 中的第一个问题,所以如果您需要任何更多信息,我显然会提供。

提前致谢!

您需要将对 Tsearch 的递归调用更改为实际 return 找到的节点。所以,而不是这个代码:

else if( comp > 0) {
    Tsearch(r->left, word);
}
else if( comp < 0) {
    Tsearch(r->right, word);
}

这样做:

else if( comp > 0) {
    return Tsearch(r->left, word);
}
else if( comp < 0) {
    return Tsearch(r->right, word);
}

请注意,如果您的树很深,您可能会用完整个调用堆栈并引发异常。

为什么不使用 while 循环?

Tnode *Tsearch(Tnode *r, char *word) {
    Tnode *cur = r;
    int comp;
    while (cur != NULL)
    {
        if ((comp = strcasecmp(cur->word, word)) == 0)
        {
            printf("%s FOUND\n", cur->word);
            return cur;
        }
        else if (comp > 0)
        {
            /* Move to the left child */
            cur = cur->left;
        }
        else
        {
            /* Move to the right child */
            cur = cur->right;
        }
    }
    printf("NOT FOUND\n");
    return NULL;
}