#include<stdio.h> #include<stdlib.h> #include<string.h>//调用strcmp函数头文件 #define LEN sizeof(QNode)//定义一个宏,方便 typedef struct Queue {//链表结点 int data; struct Queue* next; } QNode, *Queue; typedef struct {//定义头指针和尾指针结构体,方便调用指针 QNode* front; QNode* rear; } LinkQueue; void...