我是靠谱客的博主 时尚大叔,最近开发中收集的这篇文章主要介绍数据结构---循环队列例子,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <stdio.h>
#include <malloc.h>
typedef struct Queue{
    int *pBase;
    int front;
    int rear;
}QUEUE;
void init(QUEUE *pQ);
bool en_queue(QUEUE *pQ, int val);
void traverse_queue(QUEUE *pQ);
bool full_queue(QUEUE *pQ);
bool out_queue(QUEUE *pQ, int *pVal);
bool empty_queue(QUEUE *pQ);
int main(void)
{
    QUEUE Q;
    int val;

    init(&Q);
    en_queue(&Q, 1);
    en_queue(&Q, 2);
    en_queue(&Q, 3);
    en_queue(&Q, 4);
    en_queue(&Q, 5);
    traverse_queue(&Q);
    if(out_queue(&Q,&val))
        printf("out queue success:%dn",val);
    else
        printf("out queue failn");

    traverse_queue(&Q);    

    return 0;
}
void init(QUEUE *pQ)
{
    pQ->pBase = (int*)malloc(sizeof(int)*6);
    pQ->front = 0;
    pQ->rear = 0;
}
bool full_queue(QUEUE *pQ)
{
    if((pQ->rear +1)%6 == pQ->front)
        return true;
    else
        return false;
}
bool en_queue(QUEUE *pQ, int val)
{
    if(full_queue(pQ)){
        return false;
    } else {
        pQ->pBase[pQ->rear] = val;
        pQ->rear = (pQ->rear + 1)%6;
        return true;
    }
}
void traverse_queue(QUEUE *pQ)
{
    int i = pQ->front
    while(i != pQ->rear)
    {
        printf("%d ",pQ->pBase[i]);
        i = (i+1)%6;
    }
    printf("n");

    return;
}
bool empty_queue(QUEUE *pQ)
{
    if(pQ->front == pQ->rear)
        return true;
    else
        return false;
}
bool out_queue(QUEUE *pQ, int *pVal)
{
    if(empty_queue(pQ)) {
        return false;
    } else {
        *pVal = pQ->pBase[pQ->front];
        pQ->front = (pQ->front + 1)%6;
    }
}

 

最后

以上就是时尚大叔为你收集整理的数据结构---循环队列例子的全部内容,希望文章能够帮你解决数据结构---循环队列例子所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部