struct { int item; struct list* next; }list; 如果结构体定义如上,使用下面的代码,将会报错 //添加元素,由于我们实现的是单向链表,所以使用从尾部添加 bool AddItem(int a,struct list *plist) { struct list *pNew; struct list *pNode; pNode=plist; pNew=malloc(sizeof( struct list)); if(pNew==NULL) { return…