#include <stdio.h> #include<stdlib.h> #include<string.h> typedef char DataType; typedef struct tree { DataType val; struct tree* left; struct tree* right; }Tree; Tree* TreeCreate(Tree** root, DataType* a, int* pi) { if (a[*pi] == '#') { (*pi)++; ...