#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Node* ptrToNode; struct Node{ char fileName[17]; int row; int count; ptrToNode Next; }; typedef struct Node* List; List creatList() { List p=(List)malloc(sizeof(struct Node)); p->Next...