#include<stdio.h> #include<stdlib.h> typedef char ElemType; typedef struct node{ ElemType data; struct node* next; }linknode; void Initlist(linknode *L, ElemType a[], int n) { linknode *s; L = (linknode*)malloc(sizeof(linknode)); L->next = NULL; for (int i = 1; i <= n; i++...