风萧28

2020年5月12日

C 链表合并

摘要: #include <stdio.h> #include <stdlib.h> typedef struct node{ int data; //占4B struct node *next; //占8B } List; //共占16B List* creatLink(int li[], int n)  阅读全文

posted @ 2020-05-12 11:35 小流江海 阅读(238) 评论(0) 推荐(0) 编辑

导航