BTNode* FindNode(BTNode *b,ElemType x)//找到值为x的节点并返回
{
if(!b)
{
return NULL;
}
else
{
if(b->data==x)
{
return b;
}
else
{
FindNode(b->lchild,x);
FindNode(b->rchild,x); }
}
}
这个程序是我自己写的 可是 他是个错误的 忘了说了 对不起大家阿
能不能告诉我为什么错了阿
这个程序对我打击很大阿
[此贴子已经被作者于2006-5-30 17:31:37编辑过]