- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验五 队列的设计及应用
实验六 队列的设计及应用
一.实验目的
1.掌握队列的逻辑结构。
2.掌握循环队列、链队列的设计过程。
3.使用设计的队列实现进制转换。
二、实验内容
1.设计循环队列:设计头文件CirQueue.h,其内容如下:
#include stdlib.h
#define MaxSize 20
typedef struct
{
Qelemtype data[MaxSize];
int front,rear;
}CirQueue;
void InitQueue(CirQueue Q)
{
Q.front=Q.rear=0;
}
int QueueEmpty(CirQueue Q)
{
return Q.front==Q.rear;
}
int QueueFull(CirQueue Q)
{
return (Q.rear+1)%MaxSize==Q.front;
}
void EnQueue(CirQueue Q,Qelemtype e)
{
if(QueueFull(Q))
{
coutoverfull!endl;
exit(-1);
}
Q.data[Q.rear]=e;
Q.rear=(Q.rear+1)%MaxSize;
}
void DeQueue(CirQueue Q,Qelemtype e)
{
if(QueueEmpty(Q))
{
coutThe Queue is empty!endl;
exit(-1);
}
e=Q.data[Q.front];
Q.front=(Q.front+1)%MaxSize;
}
void GetFront(CirQueue Q,Qelemtype e)
{
if(QueueEmpty(Q))
{
coutThe Queue is empty!endl;
exit(-1);
}
e=Q.data[Q.front];
}
2.设计链式队列:设计头文件LinkQueue.h,其内容如下:
#include stdio.h
#include stdlib.h
typedef struct Qnode
{
Qelemtype data;
Qnode *next;
}QNode;
typedef struct
{
QNode *front;
QNode *rear;
}LinkQueue;
void InitQueue(LinkQueue Q)
{
Q.front=Q.rear=new QNode;
Q.front-next=NULL;
}
int QueueEmpty(LinkQueue Q)
{
return Q.front==Q.rear;
}
void EnQueue(LinkQueue Q,Qelemtype e)
{
Qnode *p=new Qnode;
p-data=e;
p-next=NULL;
Q.rear-next=p;
Q.rear=p;
}
void DeQueue(LinkQueue Q,Qelemtype e)
{
if(QueueEmpty(Q))
{
coutThe Queue is empty!;
exit(-1);
}
QNode *p;
p=Q.front-next;
e=p-data;
Q.front-next=p-next;
if(p==Q.rear)
{
Q.rear=Q.front;
}
delete p;
}
void GetFront(LinkQueue Q,Qelemtype e)
{
if(QueueEmpty(Q))
{
coutThe Queue is empty!;
exit(-1);
}
e=Q.front-next-data;
}
3.利用循环队列或链式队列实现舞伴配对问题:设计测试文件test.cpp,其内容如下:
#include iostream.h
typedef int Qelemtype;
#include LinkQueue.h
void main()
{
LinkQueue Q;
InitQueue(Q);
for(int i=1;i=3;i++)
{
EnQueue(Q,i*2-1);
}
while(!QueueEmpty(Q))
{
Qelemtype e;
DeQueue(Q,e);
coute ;
}
coutendl;
}
4
您可能关注的文档
- 务实创新精细管理简缩版.doc
- 动物酒架设计.doc
- 动火作业票作业方案.doc
- 动词ing教案.doc
- 努力开创学校园林绿化工作新局面.doc
- 创意设计文字.doc
- 劳务派遣行政许可操作规范.doc
- 办公室布置效果图.ppt
- 包三地下管道土建技术交底记录(福建表格-地管土建工程).doc
- 助推116工程策划书.doc
- 艺术疗法行业商业机会挖掘与战略布局策略研究报告.docx
- 智能家庭娱乐系统行业商业机会挖掘与战略布局策略研究报告.docx
- 医疗纠纷预防和处理条例与医疗事故处理条例的思考分享PPT课件.pptx
- 新冀教版(2025)七年级数学下册《6.1 二元一次方程组》习题课件.pptx
- 新冀教版(2025)七年级数学下册精品课件:6.2.3 二元一次方程组的解法代入、加减消元法的综合应用.pptx
- 导演节目行业市场发展趋势及投资咨询报告.docx
- 制作和服培训行业风险投资态势及投融资策略指引报告.docx
- 医疗转诊的行政服务行业消费市场分析.docx
- 文件装订行业市场发展趋势及投资咨询报告.docx
- 在线语言艺术教育行业分析及未来五至十年行业发展报告.docx
文档评论(0)