源文件:
#include <stdio.h>#include <malloc.h>#include "liqueue.h"void InitQueue(LiQueue *&q) //初始化链队{ q=(LiQueue *)malloc(sizeof(LiQueue)); q->front=q->rear=NULL;}void DestroyQueue(LiQueue *&q) //销毁链队{ QNode *p=q->front,*r; //p指向队头数据节点 if (p!=NULL) //释放数据节点占用空间 { r=p->next; while (r!=NULL) { free(p); p=r; r=p->next; } } free(p); free(q); //释放链队节点占用空间}bool QueueEmpty(LiQueue *q) //判断链队是否为空{ return(q->rear==NULL);}int QueueLength(LiQueue *q) //返回队列中数据元素个数{ int n=0; QNode *p=q->front; while (p!=NULL) { n++; p=p->next; } return(n);}void enQueue(LiQueue *&q,ElemType e) //入队{ QNode *p; p=(QNode *)malloc(sizeof(QNode)); p->data=e; p->next=NULL; if (q->rear==NULL) //若链队为空,则新节点是队首节点又是队尾节点 q->front=q->rear=p; else { q->rear->next=p; //将*p节点链到队尾,并将rear指向它 q->rear=p; }}bool deQueue(LiQueue *&q,ElemType &e) //出队{ QNode *t; if (q->rear==NULL) //队列为空 return false; t=q->front; //t指向第一个数据节点 if (q->front==q->rear) //队列中只有一个节点时 q->front=q->rear=NULL; else //队列中有多个节点时 q->front=q->front->next; e=t->data; free(t); return true;}#include <stdio.h>#include <malloc.h>#in