问答题

简答题 二叉树用二叉链表存储表示。typedefstructBiTNode{     TelemTypedata;     StructBiTNode*lchild,*rchild;}BiTNode,*BiTree;编写一个复制一棵二叉树的递归算法。

【参考答案】