C语言基于链表的队列

写了一个基于链表的队列,非常简单,只提供了初始化,判断是否为空,销毁,入队和出队操作,可以很容易的嵌入到工程中去。

只提供了很少的注释,好的代码是可以自注释的,另外如果对于C语言和队列这个数据结构较熟悉的话,看懂我的代码里的一些指针操作是很容易的。

在最下面提供了一个测试程序,也可以看成使用指南,

queue.h

/*************************************
*基于链表的队列
*作者:JK
*日期:2014-08-10
*************************************/

#ifndef _QUEUE_HEADER_H_
#define _QUEUE_HEADER_H_

struct Node;
typedef struct Node* Queue;
typedef struct Node* pNode;
typedef int ElemType;

struct Node
{
    ElemType elem;
    pNode next;
};

pNode InitQueue();                 // 初始化队列
int IsEmpty(Queue q);              // 判断是否为空,返回值,空:true;非空:false
void DestroyQueue(Queue q);        // 销毁这个队列

ElemType Dequeue(Queue q);         // 出队
void Enqueue(Queue q, ElemType e); // 入队

#endif

queue.c

#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <assert.h>
#include "queue.h"


pNode InitQueue()
{
    pNode p;

    p = (pNode)malloc(sizeof(struct Node));
    assert(p != NULL);
    p->next = NULL;

    return p;
}

int IsEmpty(Queue q)
{
    assert(q != NULL);

    return (q->next == NULL);
}


void DestroyQueue(Queue q)
{
    assert(q != NULL);

    pNode p;
    while (q->next != NULL)
    {
        p = q->next;
        q->next = p->next;
        free(p);
    }
    free(q);
}

ElemType Dequeue(Queue q)
{
    assert(q != NULL);

    pNode p;
    if (!IsEmpty(q))
    {
        p = q->next;
        q->next = p->next;
    }

    ElemType tmp = p->elem;
    free(p);
    return tmp;
}

void Enqueue(Queue q, ElemType e)
{
    assert(q != NULL);

    pNode pTmp = (pNode)malloc(sizeof(struct Node));
    assert(pTmp);
    pTmp->elem = e;
    pTmp->next = NULL;

    pNode p = q;
    while(p->next != NULL)
    {
        p = p->next;
    }

    p->next = pTmp;
}

main.c

#include <stdio.h>
#include <stdlib.h>
#include "queue.h"

int main()
{
    printf("Hello world JK!\n");

    Queue myQueue = InitQueue(); // 初始化

    int i = 0;
    for (i = 0; i < 10; ++i)    // 入队操作
    {
        Enqueue(myQueue, i);
    }

    while (!IsEmpty(myQueue))  // 出队操作 
    {
        int tmp = Dequeue(myQueue);
        printf("%d ", tmp);
    }

    DestroyQueue(myQueue);    // 销毁队列

    return 0;
}
测试结果:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值