为了账号安全,请及时绑定邮箱和手机立即绑定

这是一个存在大BUG的队列

标签:
C 数据结构
include<stdio.h>
include<stdlib.h>

typedef struct node{
char data;
struct node *next;
}Node;

typedef struct{
Node front;
Node
rear;
}Queue;

//初始化
void Init(Queue *Q)
{
Q->front =NULL;
Q->rear =NULL;

}

//判断队列空
int IsEmpty(Queue *Q)
{

return Q->front==NULL;

}
//入队·

int EnQueue(Queue Q ,char x)
{
Node
p=(Node*)malloc(sizeof(Node));
p->data=x;
p->next=NULL;
//printf("right\n");
if(IsEmpty(Q))
{
Q->front=p;
Q->rear=p;
}
else{
Q->rear->next=p;
Q->rear=p;
}
return 1;

}

char OutQueue(Queue *Q)
{

Node *p;
char ch;
if(IsEmpty(Q))
{
    printf("IsEmpty==%d\n",IsEmpty(Q));
    printf("The Queue is NULL,you can not out the Queue!\n");
}

else if(Q->rear==Q->front)
{
    p=Q->front;
    ch =p->data;
    Q->front=NULL;
    Q->rear=NULL;

    free(p);
}

else{

    p=Q->front;
    Q->front=p->next;

    ch =p->data;
    free(p);

}

Q->rear->next=p;
Q->rear=p;

return 1;

}

void PrintQueue(Queue *Q)
{
printf("right\n");
while(Q->front)
{
printf("%c\n",Q->front->data);
Q->front=Q->front->next;
}

}

int main()
{
Queue Q;
printf("Now,we will execute the EnQueue!\n");
Init(&Q);
EnQueue(&Q,'a');
EnQueue(&Q,'b');
EnQueue(&Q,'c');
EnQueue(&Q,'d');
EnQueue(&Q,'e');
PrintQueue(&Q);
printf("Now,we will execute the OutQueue!\n");
OutQueue(&Q );
PrintQueue(&Q);
//for(;;);

return 0;

}

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消