11 2015 档案
摘要:#include #include typedef struct List{ int data; struct List *next;}List;//创建循环单向链表n为长度List *list_create(int n){ List *head, *p; int i;...
阅读全文
摘要:#include #include #include typedef struct List{ char data; struct List *next; }List; //创建单链表List *list_create(void) { struct List *head...
阅读全文