2
0
3
40
336
68
245
为了建立链表 使head指向a节点,a.next指向b节点,b.next指向c节点这就构成了链表关系。 #include struct Student { int num; float score; struct Student *next; }; int main() { struct Student a,b,c,*head, *p; a.num=10...