第七周 项目4 队列数组

来源:互联网 发布:手机mac地址会变吗 编辑:程序博客网 时间:2024/05/17 01:13
<img src="http://img.blog.csdn.net/20151016084253582" alt="" /><img src="http://img.blog.csdn.net/20151016083725683" alt="" />Copyright (c)2015,烟台大学计算机与控制工程学院      All rights reserved.     文件名称:第7周项目4-- 创建使用队列数组.cpp      作    者:吕云双      完成日期:2015年10月16日问题描述:使用队列数组版 本 号:v1.0      
//头文件typedef int 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);   //出队

//源文件#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>#include "liqueue.h"#define N 10int main(){    int i, a;    LiQueue *qu[N]; //定义队列指针数组    for (i=0; i<N; i++)        InitQueue(qu[i]);       //初始化队列    //为队列中加入值    printf("输入若干正整数,以0结束: ");    scanf("%d", &a);    while(a)    {        enQueue(qu[a%10], a);        scanf("%d", &a);    }    //输出各个队列    printf("按个位数整理到各个队列中后,各队列出队的结果是: \n");    for (i=0; i<N; i++)    {        printf("qu[%d]: ", i);        while(!QueueEmpty(qu[i]))        {            deQueue(qu[i], a);            printf("%d ", a);        }        printf("\n");    }    //销毁各个队列    for (i=0; i<N; i++)        DestroyQueue(qu[i]);    return 0;}


运行结果:

基础知识:




0 0
原创粉丝点击