风萧28

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 on 2020-05-12 11:35  小流江海  阅读(238)  评论(0编辑  收藏  举报

导航