样例输出: abdheicfjgk hdbeiafjckg #include using namespace std; //定义二叉树结点 typedef struct JD { char data; struct JD *lchild,*rchild; }JD; //此函数为根据输入创建二叉树,注意输入应按先序遍历顺序 JD *crt_bt_pre(JD *bt) {