继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

这是一个存在大BUG的队列

慕粉3818391
关注TA
已关注
手记 2
粉丝 4
获赞 5
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;

}

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP