#include <stdio.h> #include <stdlib.h> typedef struct tnode { int x; struct tnode* lchild; struct tnode* rchild; } node, *pnode; void creat_find(int n) { pnode r; pnode root = malloc(sizeof(node)); r = root; scanf("%d", &root->x); root->lchild = NULL...