欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 创投人物 > 队列的基本操作(数据结构)

队列的基本操作(数据结构)

2024/11/29 8:02:41 来源:https://blog.csdn.net/m0_61903191/article/details/143100564  浏览:    关键词:队列的基本操作(数据结构)

1.实验内容:

编写一个程序sqqueue.cpp,实现环形队列(假设栈中元素类型ElemType 为 char)的各种基本运算,并在此基础上设计一个程序exp4_1.cpp,完成如下功能:

2.实验步骤:

(1)初始化队列q

(2)判断队列q是否非空

(3)依次进队元素a、b、c

(4)出队一个元素,输出该元素

(5)依次进队元素d、e、f

(6)输出出队序列

(7)释放队列。

3.实验代码:

创建一个文件命名为sqstack.cpp,在文件下放代码:

#include <stdio.h>
#include <malloc.h>
#define MaxSize 100
typedef char ElemType;
typedef struct
{ElemType data[MaxSize];
int front,rear;
}SqQueue;
void InitQueue(SqQueue *&q){    //初始化环形队列q q=(SqQueue *)malloc(sizeof(SqQueue));q->front=q->rear=0;
}
void DestroyQueue(SqQueue *&q){    //销毁环形队列 free(q);
}
bool QueueEmpty(SqQueue *q){return(q->front==q->rear);
}
bool enQueue(SqQueue *&q,ElemType e){    //进队列 if ((q->rear+1)%MaxSize==q->front)return false;    //队列满 q->rear=(q->rear+1)%MaxSize;q->data[q->rear]=e;return true;
}
bool deQueue(SqQueue *&q,ElemType &e){    //出队列 if (q->rear==q->front)return false;    //队空 q->front=(q->front+1)%MaxSize;e=q->data[q->front];return true; 
}

 创建另一个文件,在文件下放代码:

#include "sqstack.cpp"
int main()
{ElemType e;SqQueue *q;printf("环形队列基本运算如下:\n");printf("(1)初始化队列q\n");InitQueue(q);printf("(2)依次进队元素a,b,c\n");if(!enQueue(q,'a')) printf("\t提示:队满,不能进队\n"); if(!enQueue(q,'b')) printf("\t提示:队满,不能进队\n");if(!enQueue(q,'c')) printf("\t提示:队满,不能进队\n");printf("(3)队列为%s\n",(QueueEmpty(q)?"空":"非空"));if(deQueue(q,e)==0)printf("队空,不能出队\n");elseprintf("(4)出队一个元素%c\n",e);printf("(5)依次进队列元素d,e,f\n");if(!enQueue(q,'d')) printf("\t 提示:队满,不能进队\n");if(!enQueue(q,'e')) printf("\t 提示:队满,不能进队\n");if(!enQueue(q,'f')) printf("\t 提示:队满,不能进队\n");printf("(6)出队列序列:");while(!QueueEmpty(q)){deQueue(q,e);printf("%c",e);}printf("\n");printf("(7)释放队列\n");DestroyQueue(q);return 1;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com