我知道这可能看起来很简单,但在过去的几个小时里我一直在摸不着头脑,试图弄清楚为什么无论我做什么,thisNode 总是为 NULL。因为这是空的,这意味着实际上没有任何东西最终被添加到树中。有没有人有任何想法?啊啊啊
struct node *tra(struct node * start, Type input)
{
struct node * thisNode = start;
if (thisNode == NULL)
return thisNode;
else
{
Type current = thisNode -> el;
if (strcmp(input, current) > 0)
return tra(thisNode -> right, input);
else if (strcmp(input, current) < 0)
return tra(thisNode -> left, input);
else
return thisNode;
}
}
Ta insert(Type input, Ta ta)
{
if ((find(input, ta)) == FALSE)
{
struct node *newEl = tra(ta -> head, input);
newEl = (struct node*)malloc(sizeof(struct node));
newEl -> el = input;
newEl -> left = NULL;
newEl -> right = NULL;
}
return ta;
}
Boolean find(Type input, Ta ta)
{
if (tra(ta -> head, input) == NULL)
return FALSE;
else
return TRUE;
}