struct _Node { int data; struct Node *next;};typedef struct _Node Node;
引用第5楼zhd32于2007-11-13 18:37发表的 :[code]struct _Node { int data; struct Node *next;};.......
引用第6楼k哥于2007-11-13 19:22发表的 :不能用class定义一个链表吗?