#include typedef struct BiTNode { int data; struct BiTNode *Lchild, *rclild; } BiTNode, *BiTree; int main(int argc, char const *argv[]) { return 0; }