数据结构--队列Queue--循环顺序队列

针对顺序队列中的入队操作:if 队列没满,但是队尾到达数组末尾了,队列"满"了,其实没有满,数据需要整体移至数组头部,才可以继续入队。
为解决该问题,避免数据的挪移,有了循环顺序队列

循环顺序队列的思路:

  1. 当队列未满,队尾到达数组末尾了,让 tail 的数组下标跳至0;
  2. 判断队列是否满,可以用队列长度==容量,或者用求模运算(少用一个数组空间,(tail+1)%capacity = head 则队列满了)
    完成代码见:https://github.com/hitskyer/course/tree/master/dataAlgorithm/chenmingming/queue

1. 主要修改

入队函数修改

bool circularQueue<T>::enqueue(const T &data)
{
    if(full())
        return false;
    else
    {
        if(empty())
        {
            m_pHead = m_pTail = 0;
            arrQ[0] = data;
            m_QueueLen++;
        }
        else if(m_pTail < m_capacity-1)
        {
            arrQ[++m_pTail] = data;
            m_QueueLen++;
        }
        else    //队列没满,但是队尾到达数组末尾了,让tail变成-1
        {
            if(m_pTail + 1 == m_capacity)
                m_pTail = -1;
            arrQ[++m_pTail] = data;
            m_QueueLen++;
        }
        return true;
    }
}

打印函数修改

void circularQueue<T>::print() const
{
    if(empty())
        cout << "empty queue!" << endl;
    cout << "circularQueue from head to tail as follow:" << endl;
    int j = m_pHead;
    for(UINT i = 0; i < m_QueueLen; )
    {
        if(j == m_capacity)     //打印时注意下标循环跳转
            j = 0;
        cout << "No." << ++i << " elem is " << arrQ[j++] << endl;
    }
    cout << "--------------print end----------------" << endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Michael阿明

如果可以,请点赞留言支持我哦!

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

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

打赏作者

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

抵扣说明:

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

余额充值