自己根据实际的数据类型名修改一下就可以了int Count(BinTreeNode *root){if (root)return 1 + Count(root->leftchild) + Count(root->rightchild);elsereturn 0;}