链式队列的代码演示

队列的创建,入队,出队,遍历,判断是否为空

//链式队列的代码演示
#include<bits/stdc++.h>

typedef struct Node{
	int data;
	struct Node *pNext;
}Node,*pNode;

typedef struct Queue{
	pNode front;
	pNode rear;
}Queue,*pQueue;

void init(pQueue pQ){
	pQ->front=(pNode)malloc(sizeof(Node));
	pQ->rear=pQ->front;
	pQ->rear->pNext=NULL;
	return;
} 

void Enqueue(pQueue pQ,int val){
	pNode pNew=(pNode)malloc(sizeof(Node));
	pNew->data=val;
	pNew->pNext=NULL;
	pQ->rear->pNext=pNew;
	pQ->rear=pNew;
	return;
}

bool empty(pQueue pQ){
	if(pQ->front==pQ->rear)
		return true;
	else
		return false;
}

bool Dequeue(pQueue pQ,int *pVal){
	if(empty(pQ))
		return false;
	pNode p=pQ->front->pNext;
	*pVal=p->data;
	pQ->front->pNext=p->pNext;
	free(p);
	p=NULL;
	return true;
}

void traverse(pQueue pQ){
	if(empty(pQ))
		return;
	pNode p=pQ->front->pNext;
	while(p){
		printf("%d ",p->data);
		p=p->pNext;
	}
	printf("\n");
	return;
}

int main()
{
	Queue Q;
	init(&Q);
	Enqueue(&Q,1);
	Enqueue(&Q,2);
	Enqueue(&Q,3);
	Enqueue(&Q,4);
	int val;
	if(Dequeue(&Q,&val))
		printf("出队成功,出队的元素是%d\n",val);
	else 
		printf("出对失败\n");
	traverse(&Q);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值