摘要: 1 /* 2 list.h -- 简单链表类型的头文件 3 */ 4 5 #ifndef LIST_H 6 #define LIST_H 7 8 #define TSIZE 45 9 10 typedef struct film 11 { 12 char title[TSIZE]; 13 int r 阅读全文
posted @ 2018-07-04 15:05 web1013 阅读(276) 评论(0) 推荐(0) 编辑