摘要: 1 #include 2 #include 3 typedef struct Node 4 { 5 char a; 6 struct Node *next; 7 }Node,*list; 8 void tcf(list L);//头插法 9 Node *get(list L,int i);//查找第i个节点 10 int l(list L);... 阅读全文
posted @ 2017-10-18 21:45 zcb_bai 阅读(185) 评论(0) 推荐(0) 编辑