int i; fp=fopen("c:\\dat.txt","r"); /*假设数据文件是c:\dat.txt*/ while (!feof(fp)){ fscanf(fp,"%d",&i); bst=t(bst,i); /*生成二叉排序树*/ } fclose(fp); inorder(bst); /*输出二叉排序树*/ putchar('\n'); scanf("%d",&i); /*输入需要查找的数字*/ if (ser(bst,...