//递归算法int LeafCount(Tree *tree){ if(tree->lchild!=null) return LeafCount(tree->lchild) + LeafCount(tree->rchild); else return 1;}非递归算法可以用一个中间栈实现
不会