Self Referential Data Structure in C - create a singly linked list http://www.how2lab.com/programming/c/link-list1.php 结构体的自引用 两种定义方式 typedef struct node_type { int data; struct node_type *next; } list; struct node_type { int data; struct node_type *next; }; typedef ...