70,036
社区成员
发帖
与我相关
我的任务
分享
#define DataType int
typedef struct _node
{
DataType data;
struct _node * lchild, * rchild;
}node, *pnode;
typedef struct TREE{
int node;
struct TREE *child;
}TREE;
typedef struct TREE{
int node;
struct TREE *child;
}TREE;