填空题

有如下图所示的双链表结构,请根据图示完成结构体的定义:
lhead
data
rchild
struct aa
{ int data;
______} node;

【参考答案】

struct aa,lhead,*rchild;