第七周项目2

  1. /*        
  2. Copyright (c)2017,烟台大学计算机与控制工程学院        
  3. All rights reserved.        
  4. 文件名称:第7周项目2         
  5. 作    者:常路        
  6. 完成日期:2017年10月26日        
  7. 版 本 号:v1.0        
  8.         
  9. 问题描述: 定义链队存储结构,实现其基本运算,并完成测试。   
  10. 输入描述:若干数据。  
  11. 程序输出:若干数据。  
  12. */    
  13. #include <iostream>  
  14. #include <cstdio>  
  15. #include "lianduitou.h"  
  16. using namespace std;  
  17.   
  18.   
  19.   
  20. int main()  
  21. {  
  22.     ElemType e;  
  23.     LiQueue *q;  
  24.     printf("(1)初始化链队q\n");  
  25.     InitQueue(q);  
  26.     printf("(2)依次进链队元素a,b,c\n");  
  27.     enQueue(q,'a');  
  28.     enQueue(q,'b');  
  29.     enQueue(q,'c');  
  30.     printf("(3)链队为%s\n",(QueueEmpty(q)?"空":"非空"));  
  31.     if (deQueue(q,e)==0)  
  32.         printf("队空,不能出队\n");  
  33.     else  
  34.         printf("(4)出队一个元素%c\n",e);  
  35.     printf("(5)链队q的元素个数:%d\n",QueueLength(q));  
  36.     printf("(6)依次进链队元素d,e,f\n");  
  37.     enQueue(q,'d');  
  38.     enQueue(q,'e');  
  39.     enQueue(q,'f');  
  40.     printf("(7)链队q的元素个数:%d\n",QueueLength(q));  
  41.     printf("(8)出链队序列:");  
  42.     while (!QueueEmpty(q))  
  43.     {  
  44.         deQueue(q,e);  
  45.         printf("%c ",e);  
  46.     }  
  47.     printf("\n");  
  48.     printf("(9)释放链队\n");  
  49.     DestroyQueue(q);  
  50.     return 0;  
  51. }  
[cpp]  view plain  copy
  1. <pre name="code" class="cpp">typedef char ElemType;  
  2. typedef struct qnode  
  3. {  
  4.     ElemType data;  
  5.     struct qnode *next;  
  6. } QNode;        //链队数据结点类型定义  
  7.   
  8. typedef struct  
  9. {  
  10.     QNode *front;  
  11.     QNode *rear;  
  12. } LiQueue;          //链队类型定义  
  13. void InitQueue(LiQueue *&q);  //初始化链队  
  14. void DestroyQueue(LiQueue *&q);  //销毁链队  
  15. bool QueueEmpty(LiQueue *q);  //判断链队是否为空  
  16. int QueueLength(LiQueue *q);  //返回队列中数据元素个数  
  17. void enQueue(LiQueue *&q,ElemType e);  //入队  
  18. bool deQueue(LiQueue *&q,ElemType &e);   //出队  
  19. </pre><br>  
  20. <br>  
  21. <pre></pre>  
  22. <pre name="code" class="cpp"><pre name="code" class="cpp">#include <stdio.h>  
  23. #include <malloc.h>  
  24. #include "lianduitou.h"  
  25.   
  26. void InitQueue(LiQueue *&q)  //初始化链队  
  27. {  
  28.     q=(LiQueue *)malloc(sizeof(LiQueue));  
  29.     q->front=q->rear=NULL;  
  30. }  
  31. void DestroyQueue(LiQueue *&q)  //销毁链队  
  32. {  
  33.     QNode *p=q->front,*r;   //p指向队头数据节点  
  34.     if (p!=NULL)            //释放数据节点占用空间  
  35.     {  
  36.         r=p->next;  
  37.         while (r!=NULL)  
  38.         {  
  39.             free(p);  
  40.             p=r;  
  41.             r=p->next;  
  42.         }  
  43.     }  
  44.     free(p);  
  45.     free(q);                //释放链队节点占用空间  
  46. }  
  47. bool QueueEmpty(LiQueue *q)  //判断链队是否为空  
  48. {  
  49.     return(q->rear==NULL);  
  50. }  
  51. int QueueLength(LiQueue *q)  //返回队列中数据元素个数  
  52. {  
  53.     int n=0;  
  54.     QNode *p=q->front;  
  55.     while (p!=NULL)  
  56.     {  
  57.         n++;  
  58.         p=p->next;  
  59.     }  
  60.     return(n);  
  61. }  
  62. void enQueue(LiQueue *&q,ElemType e)  //入队  
  63. {  
  64.     QNode *p;  
  65.     p=(QNode *)malloc(sizeof(QNode));  
  66.     p->data=e;  
  67.     p->next=NULL;  
  68.     if (q->rear==NULL)      //若链队为空,则新节点是队首节点又是队尾节点  
  69.         q->front=q->rear=p;  
  70.     else  
  71.     {  
  72.         q->rear->next=p;    //将*p节点链到队尾,并将rear指向它  
  73.         q->rear=p;  
  74.     }  
  75. }  
  76. bool deQueue(LiQueue *&q,ElemType &e)   //出队  
  77. {  
  78.     QNode *t;  
  79.     if (q->rear==NULL)      //队列为空  
  80.         return false;  
  81.     t=q->front;             //t指向第一个数据节点  
  82.     if (q->front==q->rear)  //队列中只有一个节点时  
  83.         q->front=q->rear=NULL;  
  84.     else                    //队列中有多个节点时  
  85.         q->front=q->front->next;  
  86.     e=t->data;  
  87.     free(t);  
  88.     return true;  
  89. }  
  90. </pre><pre name="code" class="cpp"></pre><img src="https://img-blog.csdn.net/20171024185638016?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcmVueXVhbnN1bg==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt=""><pre></pre>  
  91. <pre></pre>  
  92. <pre></pre>  
  93.      
  94. </pre>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值