根据自己的数据类型名与成员名修改这个void destroy(binNode *root){if (root){destroy(root->lchild);destroy(root->rchlid);free(root);}}
用后序遍历所有节点,每个节点都用free()释放内存空间。