1.31作业————————封装一个循环顺序队列

头文件

#ifndef HEADER_H
#define HEADER_H
#define MAX 20
class Queue
{
private:
    int front;
    int tail;
    int *data;
public:
    //创建
    void creat();
    //判空
    bool empty();
    //判满
    bool full();
    //入队
    void push(int n);
    //出队
    void pop();
    //遍历队列
    void show();
    //求队列长度
    int size();
    //销毁
    void destroy();
};
#endif // HEADER_H

源文件

#include<header.h>
#include<iostream>
using namespace std;
//创建
void Queue::creat()
{
    front=0;
    tail=0;
    data=new int[MAX];
    cout<<"创建成功"<<endl;
}
//判空
bool Queue::empty()
{
    return front==tail;
}
//判满
bool Queue::full()
{
    return (tail+1)%MAX == front;
}
//入队
void Queue::push(int n)
{
    if(full())
    {
        cout<<"入队失败"<<endl;
        return;
    }
    data[tail] = n;

    tail = (tail+1)%MAX;

    cout<<"入队成功"<<endl;
}
//出队
void Queue::pop()
{
    if(empty())
    {
        cout<<"出队失败"<<endl;
        return;
    }
    front = (front+1)%MAX;
    cout<<"出队成功"<<endl;
}
//遍历队列
void Queue::show()
{
    if(empty())
    {
        cout<<"遍历失败"<<endl;
        return;
    }
    cout<<"队伍中从对头到队尾元素分别是:"<<endl;
    for(int i=front; i!=tail; i=(i+1)%MAX)
    {
        cout<<data[i]<<" ";
    }
    cout<<endl;
}
//求队列长度
int Queue::size()
{
    int i= (tail+MAX-front)%MAX;
    cout<<"队列长度为"<<i<<endl;
    return i;
}
//销毁
void Queue::destroy()
{
    delete []data;
    data = nullptr;
    cout<<"销毁成功"<<endl;
}

测试代码

#include <iostream>
#include<header.h>
using namespace std;

int main()
{
    Queue q;
    //创建
    q.creat();
    // 判空
    q.empty();
    // 判满
    q.full();
    //入队
    q.push(3);
    q.push(2);
    q.push(6);
    q.push(7);
    q.push(2);
    q.push(0);
    //遍历队列
    q.show();
    //出队
    q.pop();
    q.pop();
    q.pop();
    //遍历队列
    q.show();
    //求队列长度
    q.size();
    //销毁
    q.destroy();

测试结果

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值