#include <stdio.h>
#include <stdlib.h>
typedef struct LNode
{
int data;
struct LNode * next;
}LNode;
int main(int argc, char const *argv[])
{
int N1,N2,DATA;
LNode *p,*r,*s;//p作为搬用结点
LNode *C1=(LNode *)malloc(sizeof(LNode));
LNode *C2=(LNode *)malloc(sizeof(...