填空题 有如图所示的双链表结构,请根据图示完成结构体的定义:
lhead
data
rchild

struct aa
int data;
【20】 node;

  • 1、
【正确答案】 1、struct aa *lhead,*rchild;    
【答案解析】[解析] 结构体对链表的定义。