摘要: 1 #include 2 #include 3 typedef struct Node 4 { 5 char a; 6 struct Node *next; 7 }Node,*list; 8 9 void p(list L); 10 int main() 11 { 12 list L,s; 13 L=(list)malloc(sizeof(No... 阅读全文
posted @ 2017-10-23 20:51 zcb_bai 阅读(184) 评论(0) 推荐(0) 编辑