1、填写第四部分的基本程序,使程序能正常运行;
2、编制主函数,使函数具有如下功能:
a 初始化队列
b 依次元素a,b,c,d,e进队
c 输出出队序列。
#include<malloc.h> /* malloc()等 */#include<stdio.h> /* EOF(=^Z或F6),NULL */#include<stdlib.h> /* atoi() */#include<process.h> /* exit() */struct QueueRecord;typedef struct QueueRecord *Queue;#define MinQueue...