码迷,mamicode.com
首页 > 编程语言 > 详细

C语言实现常用数据结构——队列

时间:2018-09-05 19:48:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:front   def   lse   str   --   dde   ++   数据结构   include   

#include<stdio.h>
#include<stdlib.h>
#define MAX_SIZE 10
/* 用一个动态数组来实现队列 */

typedef struct Queue {
    int Capacity;
    int Front;
    int Rear;
    int Size;
    int data[MAX_SIZE];
} Queue;

void Error(char *error) {
    printf("%s",error);
}

void FatalError(char *fatalerror) {
    printf("%s",fatalerror);
}

int IsEmpty(Queue *Q) {
    return Q->Size == 0;
}

int IsFull(Queue *Q) {
    return Q->Size == Q->Capacity;
}

void Init( Queue *Q ) {
    Q->Size = 0;
    Q->Front = 1;
    Q->Rear = 0;
    Q->Capacity = MAX_SIZE;
}


static int Succ(int value,Queue *Q) {
    if(++value == Q->Capacity) {
        value = 0;
    }
    return value;
}


void Enqueue(int X,Queue *Q) {
    if( IsFull( Q ) )
        FatalError("Full queue");
    else {
        Q->Size++;
        Q->Rear = Succ(Q->Rear,Q);
        Q->data[ Q->Rear ] = X;
    }
}

 
void Dequeue(Queue *Q) {
    if(IsEmpty(Q))
        FatalError("Empty queue");
    else {
        Q->Size--;
        Q->Front = Succ(Q->Front,Q);
    }
}


int FrontAndDequeue(Queue *Q) {
    int Tmp;
    if(IsEmpty(Q))
        Error("Empty queue");
    else {
        Q->Size--;
        Tmp = Q->data[Q->Front];
        Q->Front = Succ(Q->Front,Q);
        return Tmp;
    }
}


void DisposeQueue( Queue *Q ) {
    free(Q->data);
    free(Q);
}



main() {
    Queue *q ;
    Init(q);
    int i;
    for(i = 0; i <MAX_SIZE; i++) {
        Enqueue(i,q);
    }
    for(i = 0; i <MAX_SIZE; i++) {
        printf("%d\n",FrontAndDequeue(q));
    }
}

 

C语言实现常用数据结构——队列

标签:front   def   lse   str   --   dde   ++   数据结构   include   

原文地址:https://www.cnblogs.com/wangbin2188/p/9593675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!