愉快云朵

文章
3
资源
0
加入时间
2年10月17天

数据结构-链表的合并

#include <iostream>using namespace std;typedef struct node { int data; struct node *next;} node, *list;void chuangjian(list &l) { //创建链表 l = new node; l->next = NULL;}void shuru(list &l, int n) { //链表数据的输入 int i;