本文是针对数据结构基础系列网络课程(3):栈和队列的实践项目。
【项目 - 负数把正数赶出队列】
设从键盘输入一整数序列a1,a2,…an,试编程实现:当ai>0时,ai进队,当ai<0时,将队首元素出队,当ai=0时,表示输入结束。要求将队列处理成环形队列,使用算法库中定义的数据类型及算法,程序中只包括一个函数(main函数),入队和出队等操作直接写在main函数中即可。当进队出队异常(如队满)时,要打印出错信息。
[参考解答] 说明——使用本文所用的环形队列的算法库(sqqueue.h),请[点击链接…]
#include <stdio.h>
#include <malloc.h>
#include "sqqueue.h"
int main()
{
ElemType a,x;
SqQueue *qu; //定义队列
InitQueue(qu); //队列初始化
while (1)
{
printf("输入a值(输入正数进队,负数出队,0结束):");
scanf("%d", &a);
if (a>0)
{
if (!enQueue(qu,a))
printf(" 队列满,不能入队\n");
}
else if (a<0)
{
if (!deQueue(qu, x))
printf(" 队列空,不能出队\n");
}
else
break;
}
return 0;
}
特别提示:
原sqqueue.h(请点击链接…)中的typedef char ElemType;
需改为typedef int ElemType;
。