博客
关于我
循环队列的初始化、进队、出队、以及遍历打印
阅读量: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/

你可能感兴趣的文章
mysql存储总结
查看>>
mysql存储登录_php调用mysql存储过程会员登录验证实例分析
查看>>
MySql存储过程中limit传参
查看>>
MySQL存储过程入门
查看>>
mysql存储过程批量建表
查看>>
MySQL存储过程的使用实现数据快速插入
查看>>
mysql存储过程详解
查看>>
Mysql存表情符号发生错误
查看>>
MySQL学习-group by和having
查看>>
MySQL学习-MySQL数据库事务
查看>>
MySQL学习-MySQL条件查询
查看>>
MySQL学习-SQL语句的分类与MySQL简单查询
查看>>
MySQL学习-子查询及limit分页
查看>>
MySQL学习-排序与分组函数
查看>>
MySQL学习-连接查询
查看>>
Mysql学习总结(10)——MySql触发器使用讲解
查看>>
Mysql学习总结(11)——MySql存储过程与函数
查看>>
Mysql学习总结(12)——21分钟Mysql入门教程
查看>>
Mysql学习总结(13)——使用JDBC处理MySQL大数据
查看>>
Mysql学习总结(14)——Mysql主从复制配置
查看>>