数组实现循环队列(c语言)

在这里插入图片描述

#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>

#define LEN 6
typedef struct Queue{
	int * pBase;
	int front;
	int rear;
}QUEUE;


void init(QUEUE *);
bool en_queue(QUEUE *,int);//入队
void traverse_queue(QUEUE *);//遍历队列
bool full_queue(QUEUE *);//判断对列是否为满
bool empty_queue(QUEUE *);
bool out_queue(QUEUE *,int *);

//初始化队列
void init(QUEUE *pQ){
	pQ->pBase=(int *)malloc(sizeof(int)*LEN);
	pQ->front=0;
	pQ->rear=0;
}
//判断对列是否满
bool full_queue(QUEUE * pQ){
	if(pQ->front==(pQ->rear+1)%LEN){
		return true;
	}else{
		return false;
	}
	
}
//判断对列是否为空
bool empty_queue(QUEUE *pQ){
	if(pQ->front==pQ->rear){
		return true;
	}else{
		return false;
	}
}
//遍历队列
void traverse_queue(QUEUE *pQ){
	int f = pQ->front;
	while(f != pQ->rear){
		printf("%d,",pQ->pBase[f]);
		f=(f+1)%LEN;
	}
	printf("\n");
	
}

//入队
bool en_queue(QUEUE * pQ,int val){
	if(full_queue(pQ)){
		return false;
	}else{
		pQ->pBase[pQ->rear]=val;
		pQ->rear=(pQ->rear+1)%LEN;
		return true;
	}
}
//出队
bool out_queue(QUEUE * pQ,int *pVal){//出队,并将出队的元素保存起来
	if(empty_queue(pQ)){
		return false;
	}else{
		*pVal=pQ->pBase[pQ->front];
		pQ->front=(pQ->front+1)%LEN;
		return true;
	}
}
int main(){
	QUEUE Q;
	
	init(&Q);
	int result;//用于保存出队元素的值
	
	en_queue(&Q,1);
	en_queue(&Q,2);
	en_queue(&Q,3);
	en_queue(&Q,4);
	en_queue(&Q,3);
	
	en_queue(&Q,4);
	traverse_queue(&Q);
	
	if(out_queue(&Q,&result)){
		printf("出队成功,出队的值是%d\n",result);
	}
	
	traverse_queue(&Q);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值