#include <math.h> #include <stdio.h> #include<stdlib.h> typedef struct listN * Node; struct listN { int data; Node P; }; Node initList(void); void insert(Node L, int x, int y); void delet(Node L, int x); int main(void) { int n, x, y, i, ret; char op[6]; scanf("%d",&n); Node L, Ptr;...