
#include <stdio.h>
#include <stdlib.h>
//结构体的封装
typedef struct TreeNode{
char data;
struct TreeNode *leftchild,*rightchild;
}TreeNode;
//先序建立二叉树
void CreateTree(TreeNode *&T){
char x;
scanf("%c",&x);
if(x=='#') T

最低0.47元/天 解锁文章
2160

被折叠的 条评论
为什么被折叠?



