#include<iostream> #include<cstdio> using namespace std; struct TreeNode{ int data; TreeNode* lchild; TreeNode* rchild; TreeNode(int c): data(c),lchild(NULL),rchild(NULL){} }; TreeNode* Insert(TreeNode* root,int c,int father){ if(root==NULL){ root=new Tre...