博客
关于我
循环队列的初始化、进队、出队、以及遍历打印
阅读量:798 次
发布时间:2019-03-21

本文共 1205 字,大约阅读时间需要 4 分钟。

/*顺序循环队列*/typedef int Status;typedef int ElemType;#define MAX 1024#define ERROR -1#define OK 0#include
#include
using namespace std;//设计节点结构体typedef struct SqNode{ ElemType elem[MAX]; int front; int rear;}SqNode;//初始化SqNode* InitSqCriQueue(){ SqNode* q = (SqNode*)malloc(sizeof(SqNode)); q->front = q->rear = 0; return q;} //判断队满bool IsFull(SqNode* q){ return((q->rear+1)%MAX==q->front);}//判断队空bool IsEmpty(SqNode* q){ return(q->front == q->rear);}//进队Status EnQueue(SqNode* q, ElemType e){ if (IsFull(q)) return ERROR; else { q->elem[q->rear] = e; q->rear=(q->rear+1)%MAX; return OK; }}//出队Status OutQueue(SqNode* q, ElemType* e){ if (IsEmpty(q)) return ERROR; else { *e = q->elem[q->front]; q->front=(q->front+1)%MAX; }}//打印Status Show(SqNode* q){ if (IsEmpty(q)) return ERROR; else { int p = q->front; while (q->rear != p) { cout << q->elem[p] << endl; //printf("行号----%d----\n",__LINE__); p = (p + 1) % MAX; } return OK; }}int main(){ SqNode* q = InitSqCriQueue(); EnQueue(q, 0); EnQueue(q, 1); EnQueue(q, 2); EnQueue(q, 3); EnQueue(q, 4); EnQueue(q, 5); Show(q); cout << "----------" << endl; int e; OutQueue(q, &e); Show(q);}

转载地址:http://ytogz.baihongyu.com/

你可能感兴趣的文章
Nginx 反向代理+负载均衡
查看>>
Nginx 反向代理解决跨域问题
查看>>
Nginx 反向代理配置去除前缀
查看>>
nginx 后端获取真实ip
查看>>
Nginx 多端口配置和访问异常问题的排查与优化
查看>>
Nginx 如何代理转发传递真实 ip 地址?
查看>>
Nginx 学习总结(16)—— 动静分离、压缩、缓存、黑白名单、性能等内容温习
查看>>
Nginx 学习总结(17)—— 8 个免费开源 Nginx 管理系统,轻松管理 Nginx 站点配置
查看>>
Nginx 学习(一):Nginx 下载和启动
查看>>
nginx 常用指令配置总结
查看>>
Nginx 常用配置清单
查看>>
nginx 常用配置记录
查看>>
nginx 开启ssl模块 [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx
查看>>
Nginx 我们必须知道的那些事
查看>>
Nginx 源码完全注释(11)ngx_spinlock
查看>>
Nginx 的 proxy_pass 使用简介
查看>>
Nginx 的 SSL 模块安装
查看>>
Nginx 的优化思路,并解析网站防盗链
查看>>
Nginx 的配置文件中的 keepalive 介绍
查看>>
Nginx 相关介绍(Nginx是什么?能干嘛?)
查看>>