注意:此页面搜索的是所有试题
已知二叉树的定义如下:typedef struct node{int data;struct node *lchild, *rchild;}*Bitptr;编写递归算法求二叉树的高度。函数原型为:int f34(Bitptr t);
参考答案