第七周 项目二-建立链队算法库

来源:互联网 发布:网络推广都做些什么 编辑:程序博客网 时间:2024/04/30 15:03

*作者:张栋

*完成时间:2015年10月21号

*题目描述:建立自己的专业算法库

*代码1:头文件代码

#ifndef LIQUEUE_H_INCLUDED#define LIQUEUE_H_INCLUDEDtypedef char ElemType;typedef struct qnode{    ElemType data;    struct qnode *next;} QNode;        //链队数据结点类型定义typedef struct{    QNode *front;    QNode *rear;} LiQueue;          //链队类型定义void InitQueue(LiQueue *&q);  //初始化链队void DestroyQueue(LiQueue *&q);  //销毁链队bool QueueEmpty(LiQueue *q);  //判断链队是否为空int QueueLength(LiQueue *q);  //返回队列中数据元素个数void enQueue(LiQueue *&q,ElemType e);  //入队bool deQueue(LiQueue *&q,ElemType &e);   //出队#endif // LIQUEUE_H_INCLUDED

*代码2:部分函数的实现

#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;}

*代码3:main函数

#include <stdio.h>#include "liqueue.h"int main(){    ElemType e;    LiQueue *q;    printf("(1)初始化链队q\n");    InitQueue(q);    printf("(2)依次进链队元素a,b,c\n");    enQueue(q,'a');    enQueue(q,'b');    enQueue(q,'c');    printf("(3)链队为%s\n",(QueueEmpty(q)?"空":"非空"));    if (deQueue(q,e)==0)        printf("队空,不能出队\n");    else        printf("(4)出队一个元素%c\n",e);    printf("(5)链队q的元素个数:%d\n",QueueLength(q));    printf("(6)依次进链队元素d,e,f\n");    enQueue(q,'d');    enQueue(q,'e');    enQueue(q,'f');    printf("(7)链队q的元素个数:%d\n",QueueLength(q));    printf("(8)出链队序列:");    while (!QueueEmpty(q))    {        deQueue(q,e);        printf("%c ",e);    }    printf("\n");    printf("(9)释放链队\n");    DestroyQueue(q);    return 0;}

*运行结果:



*知识点总结及心得:

   上次在云班课的答疑区中,自己对一个问题有疑惑---为什么不能直接用free进行销毁,经过老师的解答,自己也只是似懂非懂,然后加上自己在写博文的实践中,才真正的了解了原因,因为他的节点并不是连续的,而且链队的头也有些特殊所以要通过循环来一个个的进行销毁。这种课上课下结合的方法我觉得对我的帮助很大,这个知识点我的印象很深刻

0 0
原创粉丝点击