11 2015 档案

摘要:#include #include typedef struct List{ int data; struct List *next;}List;//创建循环单向链表n为长度List *list_create(int n){ List *head, *p; int i;... 阅读全文
posted @ 2015-11-03 22:00 黑暗里的影子 阅读(353) 评论(0) 推荐(0)
摘要:#include #include #include typedef struct List{ char data; struct List *next; }List; //创建单链表List *list_create(void) { struct List *head... 阅读全文
posted @ 2015-11-02 20:05 黑暗里的影子 阅读(171) 评论(0) 推荐(0)