3-4 双端队列

双端队列(deque,即double-ended queue的缩写)是一种具有队列和栈性质的数据结构,即可以(也只能)在线性表的两端进行插入和删除。若以顺序存储方式实现双端队列,请编写例程实现下列操作:

  • Push(X,D):将元素X插入到双端队列D的头;
  • Pop(D):删除双端队列D的头元素,并返回;
  • Inject(X,D):将元素X插入到双端队列D的尾部;
  • Eject(D):删除双端队列D的尾部元素,并返回。

函数接口定义:

bool Push( ElementType X, Deque D );
ElementType Pop( Deque D );
bool Inject( ElementType X, Deque D );
ElementType Eject( Deque D );

其中Deque结构定义如下:

typedef int Position;
typedef struct QNode *PtrToQNode;
struct QNode {
    ElementType *Data;      /* 存储元素的数组   */
    Position Front, Rear;   /* 队列的头、尾指针 */
    int MaxSize;            /* 队列最大容量     */
};
typedef PtrToQNode Deque; 

注意:PushInject应该在正常执行完操作后返回true,或者在出现非正常情况时返回false。当FrontRear相等时队列为空,PopEject必须返回由裁判程序定义的ERROR

思路:

        注意一点:Rear指向队列中有元素的后一个位置。如图:

        所以,前插就是先移动再插入,后插就是先插入再移动,删除同理。

代码:

bool Push(ElementType X, Deque D) {
    int l = D->Front;
    int r = D->Rear;
    int m = D->MaxSize;
    if ((r + 1) % m== l)return false;
    D->Front = (l + m - 1) % m;
    D->Data[D->Front] = X;
    return true;
}
ElementType Pop(Deque D) {
    int l = D->Front;
    int r = D->Rear;
    int m = D->MaxSize;
    if (l == r)return ERROR;
    D->Front = (l + 1) % m;
    ElementType x = D->Data[l];
    return x;
}
bool Inject(ElementType X, Deque D) {
    int l = D->Front;
    int r = D->Rear;
    int m = D->MaxSize;
    if ((r + 1) % m == l)return false;
    D->Data[r] = X;
    D->Rear = (r + 1) % m;
    return true;
}
ElementType Eject(Deque D) {
    int l = D->Front;
    int r = D->Rear;
    int m = D->MaxSize;
    if (l == r)return ERROR;
    D->Rear = (r + m - 1) % m;
    ElementType x = D->Data[D->Rear];
    return x;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

星河边采花

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值