摘要: 1 #include 2 #include 3 typedef struct Node 4 { 5 int a; 6 struct Node *next; 7 }Node,*list; 8 void j(list L);//头插法 9 list hb(list LA,list LB); //合并单链表 10 int main() 11 { 12 list... 阅读全文
posted @ 2017-10-19 14:05 zcb_bai 阅读(382) 评论(0) 推荐(0) 编辑