70,023
社区成员




#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;