链表合并(C语言版)
#include<stdio.h>//单链表定义typedef struct node{ int data; //数据域 struct n