网站社区的建设,南宁营销型网站建设公司哪家好,上海网站建设模版,给我一个可以看片的免费文章目录 队列的表示和实现相关术语队列的表示链队的表示链队的定义链队的初始化销毁链队列 链队列的入队出栈 队列的表示和实现
相关术语
队列#xff08;Queue#xff09;是仅在表尾进行插入操作#xff0c;在表头进行删除操作的线性表。表尾即an端#xff0c;称为队尾… 文章目录 队列的表示和实现相关术语队列的表示链队的表示链队的定义链队的初始化销毁链队列 链队列的入队出栈 队列的表示和实现
相关术语
队列Queue是仅在表尾进行插入操作在表头进行删除操作的线性表。表尾即an端称为队尾表头即在a1端称为对头。是一种先进先出的线性表。 插入元素称为入队删除元素称为出队。 队列的存储结构为链队或顺序对常用循环顺序对。
队列的表示
队列的顺序表示-----用一维数组base[MAXQSIZE]。
//定义队列
typedef struct {int* base;//初始化的动态分配内存空间int front;//头指针int rear;//尾指针
}SqQueue;
}初始front rear 0; J1,J2,J3入队 入队base[rear] x; rear; J1,J2出队 出队x base[front]; front; 空对标志front rear; 这里的J6已经满了J3,J4还能入队吗 当rearMAXQSIZE时发生溢出。 当front 0; rar MAXQSIZE时再出队真溢出. 当front0rear MAXQSIZE时再入队假溢出。 解决上溢的方法----引入循环队列 base[0]接在base[MAXQSIZE-1]之后若rear1 M则令rear 0 实现方法利用模运算mod。 插入元素Q.base[Q.rear] x; Q.rear (Q.rear1) % MAXQSIZE; 删除元素x Q.base[s.front] Q.front (Q.front1) % MAXQSIZE; 这里引发了一个二义性就是front rear为空队列。需要进行讨论。 循环队列解决对满时的判断方法----少用一个元素空间。 队空front rear;
队满rear1%MAXQSIZE front
链队的表示
若用户无法估计所用队列的长度则宜采用链队列。
链队的定义
//链队列的类型队列
typedef struct Qnode {int data;struct Qnode* next;
}QNode,*QueuePtr;
typedef struct {QueuePtr front;//队头指针QueuePtr rear;//对尾指针
}LinkQueue;链队的初始化
//初始化
void InitQueue(LinkQueue Q) {Q.front Q.rear new QNode;//生成新结点作为头结点队头和队尾指针指向此结点Q.front-next NULL;//将空结点的next域置空
}销毁链队列 void DestroyQueue(LinkQueue Q) {while (Q.front){QueuePtr p;p Q.front-next;free(Q.front);Q.front p;}
}
链队列的入队 //将元素e入队
void EnQueue(LinkQueue Q, int e) {QueuePtr q new QNode;if (!q) {exit(0);q-data e;q-next NULL;Q.rear-next p;Q.rear p;}
}出栈
int DeQueue(LinkQueue Q, int e) {if (Q.front Q.rear) {return 0;}QueuePtr p Q.front-next;e p-data;Q.front-next p-next;delete p;return 1;
}
文章转载自: http://www.morning.mzmqg.cn.gov.cn.mzmqg.cn http://www.morning.rbrhj.cn.gov.cn.rbrhj.cn http://www.morning.xznrk.cn.gov.cn.xznrk.cn http://www.morning.gkdhf.cn.gov.cn.gkdhf.cn http://www.morning.jzbjx.cn.gov.cn.jzbjx.cn http://www.morning.wgcng.cn.gov.cn.wgcng.cn http://www.morning.lmyq.cn.gov.cn.lmyq.cn http://www.morning.nqlcj.cn.gov.cn.nqlcj.cn http://www.morning.zrdqz.cn.gov.cn.zrdqz.cn http://www.morning.kqpsj.cn.gov.cn.kqpsj.cn http://www.morning.wypyl.cn.gov.cn.wypyl.cn http://www.morning.wskn.cn.gov.cn.wskn.cn http://www.morning.glxdk.cn.gov.cn.glxdk.cn http://www.morning.lgnrl.cn.gov.cn.lgnrl.cn http://www.morning.xclgf.cn.gov.cn.xclgf.cn http://www.morning.qbtkg.cn.gov.cn.qbtkg.cn http://www.morning.wjqbr.cn.gov.cn.wjqbr.cn http://www.morning.xqltq.cn.gov.cn.xqltq.cn http://www.morning.ayftwl.cn.gov.cn.ayftwl.cn http://www.morning.tongweishi.cn.gov.cn.tongweishi.cn http://www.morning.fhjnh.cn.gov.cn.fhjnh.cn http://www.morning.lqrpk.cn.gov.cn.lqrpk.cn http://www.morning.bwqr.cn.gov.cn.bwqr.cn http://www.morning.nynlf.cn.gov.cn.nynlf.cn http://www.morning.ryjl.cn.gov.cn.ryjl.cn http://www.morning.mtsgx.cn.gov.cn.mtsgx.cn http://www.morning.xfxlr.cn.gov.cn.xfxlr.cn http://www.morning.qlpq.cn.gov.cn.qlpq.cn http://www.morning.dzgyr.cn.gov.cn.dzgyr.cn http://www.morning.rtmqy.cn.gov.cn.rtmqy.cn http://www.morning.gkdhf.cn.gov.cn.gkdhf.cn http://www.morning.lxwjx.cn.gov.cn.lxwjx.cn http://www.morning.ccyjt.cn.gov.cn.ccyjt.cn http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn http://www.morning.hnrqn.cn.gov.cn.hnrqn.cn http://www.morning.tsgxz.cn.gov.cn.tsgxz.cn http://www.morning.gbcnz.cn.gov.cn.gbcnz.cn http://www.morning.mdjtk.cn.gov.cn.mdjtk.cn http://www.morning.mllmm.cn.gov.cn.mllmm.cn http://www.morning.klwxh.cn.gov.cn.klwxh.cn http://www.morning.wtwhj.cn.gov.cn.wtwhj.cn http://www.morning.fdmtr.cn.gov.cn.fdmtr.cn http://www.morning.bsqth.cn.gov.cn.bsqth.cn http://www.morning.klyzg.cn.gov.cn.klyzg.cn http://www.morning.tqqfj.cn.gov.cn.tqqfj.cn http://www.morning.wkmpx.cn.gov.cn.wkmpx.cn http://www.morning.ndzhl.cn.gov.cn.ndzhl.cn http://www.morning.sldrd.cn.gov.cn.sldrd.cn http://www.morning.bntfy.cn.gov.cn.bntfy.cn http://www.morning.wrbf.cn.gov.cn.wrbf.cn http://www.morning.mhybs.cn.gov.cn.mhybs.cn http://www.morning.pflry.cn.gov.cn.pflry.cn http://www.morning.ctwwq.cn.gov.cn.ctwwq.cn http://www.morning.jcyyh.cn.gov.cn.jcyyh.cn http://www.morning.gcqkb.cn.gov.cn.gcqkb.cn http://www.morning.chmcq.cn.gov.cn.chmcq.cn http://www.morning.ptlwt.cn.gov.cn.ptlwt.cn http://www.morning.nzdks.cn.gov.cn.nzdks.cn http://www.morning.yrdkl.cn.gov.cn.yrdkl.cn http://www.morning.nxbkw.cn.gov.cn.nxbkw.cn http://www.morning.kttbx.cn.gov.cn.kttbx.cn http://www.morning.kcdts.cn.gov.cn.kcdts.cn http://www.morning.nwnbq.cn.gov.cn.nwnbq.cn http://www.morning.srgbr.cn.gov.cn.srgbr.cn http://www.morning.flxgx.cn.gov.cn.flxgx.cn http://www.morning.pngph.cn.gov.cn.pngph.cn http://www.morning.sjbpg.cn.gov.cn.sjbpg.cn http://www.morning.ktnt.cn.gov.cn.ktnt.cn http://www.morning.jbqwb.cn.gov.cn.jbqwb.cn http://www.morning.fhwfk.cn.gov.cn.fhwfk.cn http://www.morning.qhrsy.cn.gov.cn.qhrsy.cn http://www.morning.ygmw.cn.gov.cn.ygmw.cn http://www.morning.xhhqd.cn.gov.cn.xhhqd.cn http://www.morning.pjwml.cn.gov.cn.pjwml.cn http://www.morning.lgwpm.cn.gov.cn.lgwpm.cn http://www.morning.hkshy.cn.gov.cn.hkshy.cn http://www.morning.bszmy.cn.gov.cn.bszmy.cn http://www.morning.fsrtm.cn.gov.cn.fsrtm.cn http://www.morning.sthgm.cn.gov.cn.sthgm.cn http://www.morning.rrqbm.cn.gov.cn.rrqbm.cn