第七周--数据结构--队列数组

本文介绍如何使用队列数组处理输入数据,并通过个位数进行分类存储,最后输出所有非空队列。程序涉及队列初始化、销毁、判断空、长度计算、入队、出队等操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >



/*
   *第七周--数据结构--队列数组 
   *Copyright (c) 2015 烟台大学计算机与控制工程学院
   *All right reserved.
   *文件名称:liqueue

   *writer:罗海员

   *date:2015年10月28日
   *版本:V1.0.2
   *操作系统:windows7
   *运行环境:VC6.0
   *问题描述:创建10个队列,分别编号为0-9(处理为队列数组,编号即下标)。
             输入若干个正整数,以数字0作为结束。设输入的值为x,其个位数字的大小为i,则将x插入到编号为i的队列中。
             最后输出所有的非空队列。
   *输入描述:任意输入,以0为止。

   *算法库包括三个文件:
     头文件:liqueue.h     包含定义顺序表数据结构的代码、宏定义、要实现算法的函数的声明;
     源文件:main.cpp      包含实现各种算法的函数的定义
       函数运算:liqueue.cpp 包含各类函数运算
   *程序输出:
*/


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


#include "liqueue.h"
int 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;
}
#ifndef LIQUEUE_H_INCLUDED
#define LIQUEUE_H_INCLUDED

#include <stdio.h>
#include <malloc.h>
#define N 10
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);   //出队


#endif // LIQUEUE_H_INCLUDED</span>



/*
总结:1.判断链队是否为空       一直伴随着我们
     2.释放链队节点占用空间   亦不容小觑
     3.入队和出队的程序为本片的中心
*/


输出结果如下:





评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值