#include <stdio.h> #include <stdlib.h> typedef struct LArr { int data; struct LArr *next; }LArr,*Linklist; //初始化链表函数 Linklist Initlist(Linklist L,int n) { Linklist l,p; l = L; while(n) { p = (Linklist)malloc(sizeof(LArr)); if(p == NULL) printf("error malloc"); scanf("%d",&p->data)...