天天看点

C结构中包含自己的嵌套定义

今天编译出错了,自己也糊涂了。正确写法如下:

typedef struct _TNode
{
    unsigned int left;
    unsinged int right;
    struct _TNode *next;
} TREE;      

继续阅读