已知二叉树的定义如下:typedef suruct node{int data;struct node*lchild,*rchild;}*bitptr编写递归算法求二叉树的高度。函数原型为:int f34(bitptr t)