数据结构-链表的合并
#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;