队列的基本操作 C语言描述

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...
默认分类 | 2009-11-09 18:18 | 阅读 889 次 | 评论 0 条