大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
一、创建sqqueue.h头文件,定义队列并声明函数
成都创新互联公司-专业网站定制、快速模板网站建设、高性价比惠济网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式惠济网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖惠济地区。费用合理售后完善,10余年实体公司更值得信赖。#pragma once
#includeusing namespace std;
#define MAXSIZE 100 //大队列长度
//队列
struct SqQueue
{
int* base; //初始化的动态分配存储空间
int front; //头指针
int rear; //尾指针
};
//初始化
bool InitQueue(SqQueue& Q);
//插入(入队)
bool InsertQueue(SqQueue& Q, int e);
//删除(出队)
bool DeQueue(SqQueue& Q, int& e);
//遍历
void PrintQueue(SqQueue Q);
//判断是否为空
bool QueueEmpty(SqQueue Q);
//队列长度
int QueueLength(SqQueue Q);
//清空
bool ClearQueue(SqQueue& Q);
//销毁
bool DestroyQueue(SqQueue& Q);
二、创建sqqueue.cpp源文件,将声明的函数做具体实现
#include"sqqueue.h"
//初始化
bool InitQueue(SqQueue& Q)
{
Q.base = new int[MAXSIZE]; //分配数组空间
if (!Q.base)
{
exit(0);
}
Q.front = Q.rear = 0; //头指针尾指针置为0,队列为空
return true;
}
//插入(入队)
bool InsertQueue(SqQueue& Q, int e)
{
if ((Q.rear + 1) % MAXSIZE == Q.front) //队满
{
return false;
}
Q.base[Q.rear] = e; //新元素插入队尾
Q.rear = (Q.rear + 1) % MAXSIZE; //队尾指针加1
return true;
}
//删除(出队)
bool DeQueue(SqQueue& Q, int& e)
{
if (Q.front == Q.rear) //队空
{
return false;
}
e = Q.base[Q.front]; //保存队头元素
Q.front = (Q.front + 1) % MAXSIZE; //队头指针加1
return true;
}
//遍历
void PrintQueue(SqQueue Q)
{
while (Q.front != Q.rear)
{
cout<< Q.base[Q.front]<< endl; //输出头指针元素
Q.front = (Q.front + 1) % MAXSIZE; //头指针加1
}
}
//判断是否为空
bool QueueEmpty(SqQueue Q)
{
if (Q.front == Q.rear)
{
return true;
}
else
{
return false;
}
}
//队列长度
int QueueLength(SqQueue Q)
{
return (Q.rear - Q.front + MAXSIZE) % MAXSIZE;
}
//清空
bool ClearQueue(SqQueue& Q)
{
if (Q.base)
{
Q.front = Q.rear;
}
return true;
}
//销毁
bool DestroyQueue(SqQueue& Q)
{
if (Q.base)
{
delete Q.base;
Q.front = Q.rear = 0;
}
return true;
}
三、在主函数中测试
#includeusing namespace std;
#include"sqqueue.h"
int main()
{
//1.创建队列Q,并初始化
SqQueue Q;
InitQueue(Q);
//2.插入数据
int arr[5] = { 1,2,3,4,5 };
for (int i = 0; i< 5; i++)
{
InsertQueue(Q, arr[i]);
}
cout<< "插入后元素:"<< endl;
//3.遍历
PrintQueue(Q);
//4.删除
int e;
DeQueue(Q, e);
cout<< "元素"<< e<< "以删除"<< endl;
cout<< "删除后元素:"<< endl;
PrintQueue(Q);
//5.判断是否为空
if (QueueEmpty(Q))
{
cout<< "队列为空"<< endl;
}
else
{
//6.队列长度
cout<< "队列不为空队列长度为:"<< QueueLength(Q)<< endl;
}
//7.清空
ClearQueue(Q);
cout<< "清空后遍历:"<< endl;
PrintQueue(Q);
//8.销毁
DestroyQueue(Q);
cout<< "销毁后遍历:"<< endl;
PrintQueue(Q);
system("pause");
return 0;
}
四、最终结果
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧