Sequence_Cqueue(顺序循环队列)

#include<stdio.h>
#define MAXSIZE 5
typedef int Datatype;
typedef struct {
Datatype a[MAXSIZE];
int front;
int rear;
}sequennce_cqueue;


void init(sequennce_cqueue *sq)
{
sq->front = 0;
sq->rear = 0;
}


int empty(sequennce_cqueue sq)
{
return (sq.front == sq.rear ? 1 : 0);
}


void display(sequennce_cqueue sq)
{
int i;
if (empty == 1)
printf("顺序表为空!\n");
else
{
if (sq.rear > sq.front)
{
for (i = sq.front; i < sq.rear; i++)
printf("%5d", sq.a[i]);
putchar('\n');
}
else
if(sq.rear < sq.front)
{
for (i = sq.front; i < MAXSIZE; i++)
printf("%5d", sq.a[i]);
for (i = 0; i < sq.rear; i++)
printf("%5d", sq.a[i]);
putchar('\n');
}
}
}


Datatype get(sequennce_cqueue sq)//取得队首的值
{
if (empty == 1)
{
printf("顺序表为空!,无法获取队首的值。\n");
return 0;
}
return sq.a[sq.front];
}


void insert(sequennce_cqueue *sq, Datatype x)
{
int i;
if ((sq->rear+1)%MAXSIZE==sq->front)
printf("队列已满,无法进行插入!\n");
else
{
sq->a[sq->rear] = x;
sq->rear = (sq->rear + 1) % MAXSIZE;
}
}


void dele(sequennce_cqueue *sq)
{
if (empty == 1)
{
printf("顺序表为空!,无法进行删除。\n");
}
else
sq->front=(sq->front+1)%MAXSIZE;
}


void main()
{
int i;
sequennce_cqueue SQ;
init(&SQ);
printf("队列空为1,非空为0:%d\n", empty(SQ));
for (i = 0; i < 5; i++)
insert(&SQ, i * 2);
display(SQ);
printf("队列空为1,非空为0:%d\n", empty(SQ));
printf("首部的元素为:%d\n", get(SQ));
dele(&SQ);
display(SQ);
printf("首部的元素为:%d\n", get(SQ));
insert(&SQ, 666);
display(SQ);
printf("首部的元素为:%d\n", get(SQ));
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值