#include<stdio.h> #include<stdlib.h> char str[105]; struct BTNode{ char c; struct BTNode* left; struct BTNode* right; }; struct BTNode* Create(int* pi) { if(str[*pi]=='#') { (*pi)++; return NULL; } struct BTNode* root=(struct BTNode*)malloc(...