【发布时间】:2018-11-25 19:32:54
【问题描述】:
找到树节点后如何返回?
所以,我有一棵二叉树,当我在树中搜索我搜索的内容时,我想返回指向该节点的指针,这样我就可以在其他函数中使用该节点。有我的搜索功能:
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 的返回时它不起作用,我真的不明白为什么以及如何解决它。
我想使用从搜索函数返回的节点的函数如下:
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++;
}
}
这个功能不完整,因为我试图解决返回问题,但基本上我想把里面有一个列表的树节点放在一个临时数组中。
结构如下:
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;
这是我在 StackOverflow 的第一个问题,所以如果您需要任何关于任何事情的更多信息,我显然会提供。
提前致谢!
【问题讨论】:
标签: c return structure binary-tree