typedef struct Node {int data;struct Node *LChild, *RChild;} BiTNode, *BiTree;void SwapTree(BiTree T){ if (T==NULL) return;//在此作答
}