队列

本文介绍了一个使用数组实现队列的数据结构示例。通过定义固定大小的数组,实现了队列的基本操作,包括入队(addqueue)和出队(delqueue)。在程序中,使用变量front和rear来跟踪队列的头部和尾部位置。
摘要由CSDN通过智能技术生成

使用数组模拟队列:

/*==========用数组模拟队列===============*/
/*起初数组元素全部为0 我们给它入队但数据都为非 0 出队元素确定后 该出队元素设置为 0*/
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
#define maxsize 10

int queue[maxsize];
int front = -1;
int rear = -1;

void addqueue(int value)
{
if(rear==maxsize-1)
 {
  printf("queue is full\n");
  exit (0);
 }
else
 {
  rear++;
  queue[rear]=value;     
  }
}

int delqueue()
{
 int temp;
 if(front==rear)
  {
   printf("queue is empty!\n");
   exit (0);//程序退出,运行窗口消失 
  }    
 else
  {
   front++;
   temp=queue[front];//the element of delqueue
   queue[front]=0;//该元素既然出队了,把它赋值0 
   return temp;    
   }  
}

int main(){

int i,j,temp;
char choose;

//先给数组初始化,后面不是队列中的元素则数值全部为 0 
for(i=0;i<maxsize;i++)
 queue[i]=0;
 
printf("please input some datas to queue:\n");
//比较好的方式,要多用 
scanf("%d",&temp);
while(temp!=0)
{
addqueue(temp);
scanf("%d",&temp);              
}
//上面用了scanf,下面 用了scanf 结果不大对。选择用getch() 可行,getchar()不行 
printf("do you want to delque?\n");
 choose=getch();
 while( choose!='n')
 {
   printf("出队的元素为 %d\n",delqueue() );
   printf("do you want to delque?\n");
    choose=getch();
 } 
            
 for(i=0;i<maxsize;i++)
  printf("queue[%d]=%d\n",i,queue[i]);

system("pause");
return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值