双端队列

来源:互联网 发布:mac os 10.9 安装u盘 编辑:程序博客网 时间:2024/06/05 08:16
#include <stdio.h>    
#define QUEUESIZE 8    
typedef char DataType;
typedef struct DQueue
{
DataType queue[QUEUESIZE];
int end1;
int end2;
}DQueue;


int EnQueue(DQueue *DQ, DataType e, int tag)
{
switch (tag)
{
case 1:
if (DQ->end1 != DQ->end2)
{
DQ->queue[DQ->end1] = e;
DQ->end1 = (DQ->end1 - 1) % QUEUESIZE;
return 1;
}
else
{
return 0;
}
break;
case 2:
if (DQ->end1 != DQ->end2)
{
DQ->queue[DQ->end2] = e;
DQ->end2 = (DQ->end2 + 1) % QUEUESIZE;
return 1;
}
else
{
return 0;
}
break;
}
return 0;
}


int DeQueue(DQueue *DQ, DataType *e, int tag)
{
switch (tag)
{
case 1:
if ((DQ->end1 + 1) % QUEUESIZE != DQ->end2)
{
DQ->end1 = (DQ->end1 + 1) % QUEUESIZE;
*e = DQ->queue[DQ->end1];
return 1;
}
else
{
return 0;
}
break;
case 2:
if ((DQ->end2 - 1) % QUEUESIZE != DQ->end1)
{
DQ->end2 = (DQ->end2 - 1) % QUEUESIZE;
*e = DQ->queue[DQ->end2];
return 1;
}
else
{
return 0;
}
break;
}
return 0;
}
  
//利用顺序存储结构实现双端队列的入队和出队操作    
void main()
{
DQueue Q;
char ch;
Q.end1 = 3;
Q.end2 = 4;
if (!EnQueue(&Q, 'a', 1))
printf("队列已满,不能入队!");
else
printf("a左端入队:\n");


if (!EnQueue(&Q, 'b', 1))
printf("队列已满,不能入队!");
else
printf("b左端入队:\n");


if (!EnQueue(&Q, 'c', 1))
printf("队列已满,不能入队!");
else
printf("c左端入队:\n");


if (!EnQueue(&Q, 'd', 2))
printf("队列已满,不能入队!");
else
printf("d右端入队:\n");

if (!EnQueue(&Q, 'e', 2))
printf("队列已满,不能入队!");
else
printf("e右端入队:\n");

printf("队列左端出队一次:");
DeQueue(&Q, &ch, 1);
printf("%c\n", ch);
printf("队列左端出队一次:");
DeQueue(&Q, &ch, 1);
printf("%c\n", ch);
printf("队列右端出队一次:");
DeQueue(&Q, &ch, 2);
printf("%c\n", ch);
printf("队列右端出队一次:");
DeQueue(&Q, &ch, 2);
printf("%c\n", ch);


}
0 0
原创粉丝点击