顺序存储循环队列——银行排号

前言

用顺序表队列操作,会遇到假溢出的现象(当队尾=所限定元素个数),因此为了解决这种假溢出的

现象,因此就引进了循环队列(将队列的头和尾连接起来,构成环形)这种结构,便可以实现对队列

的重复使用。


循环队列——银行排号

详细代码

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define SIZE 4    //最大用户数量 

typedef struct
{
  int num;        //顾客编号 
  long time;
}DATE;

typedef struct 
{
  DATE date[SIZE];
  int head;
  int tail;
}cycqueue;  

int num;
cycqueue *cycqueueinit ();                    //循环队列初始化 
int cycqueuefree(cycqueue *q);                //释放队列 
int cycqueuepush(cycqueue *q,DATE date);      //入队列 
DATE *cycqueuepop(cycqueue *q);               //出队列 
int add(cycqueue *q);                         //添加排队人 
int next(cycqueue *q);                        //为下一个顾客服务 
DATE *cycqueuepeek(cycqueue *q);              //取队列的头元素 
int cycqueuelen(cycqueue *q);                 //计算有多少人排队 



int main()
{
  cycqueue *queue;
  int  select=-1;
  queue=cycqueueinit();
  if(queue==NULL)
  {
    printf("创建队列失败");
	getch();
	return 0; 
  }
  
  while(select!=0)
  {
  	printf("\t\t    选择操作n");
  	printf("\t\t     1.新到用户n");
  	printf("\t\t     2.下一个用户\n");
  	printf("\t\t     0.退出\t\t\n");
  	printf("select:");
  	scanf("%d",&select);
  	switch(select)
  	{
        case 0:
		break;
		case 1:
		 add(queue);
		 printf("\n现在有%d用户等待\n",cycqueuelen(queue));
		 break;
		case 2:
			next(queue);
		     printf("\n现在有%d用户等待\n",cycqueuelen(queue));
		    break;
			  
	}
  }
  cycqueuefree(queue);
  getch();
  return 0;
}


cycqueue *cycqueueinit ()
{
  cycqueue *q;
  if(q=(cycqueue *)malloc(sizeof(cycqueue)))
  {
    q->head=0;
    q->tail=0;
    return q;
  }
  else
  return NULL;
}


int cycqueuefree(cycqueue *q)
{
   if(q)
    {
	  free(q);
	}
}


int cycqueuepush(cycqueue *q,DATE date)
{
  if((q->tail+1)%SIZE==q->head)
  {
    printf("栈已满");
	return 0; 
  }
  else
  {
    q->tail=(q->tail+1)%SIZE;
	q->date[q->tail]=date;
	return 1;
  }

}

DATE *cycqueuepop(cycqueue *q)
{
   if(q->tail==q->head)
   {
     printf("队为空\n");
	 exit(0);
	}
   else
   {
     q->head=(q->head+1)%SIZE;
     return &(q->date[q->head]); 
   
   }
}

int add(cycqueue *q)
{
   DATE date;
   if((q->tail+1)%SIZE!=q->head)
   {
      date.num=++num;
      date.time=time(NULL);
      cycqueuepush(q, date);
   } 
   else
   
   printf("排队人太多\n");
   
} 

int next(cycqueue *q)
{
   DATE *date;
   if(q->tail!=q->head)
   {
     date=cycqueuepop(q);
     printf("现在为%d服务\n",date->num );
   }
   if(q->tail!=q->head)
   {
     date=cycqueuepeek(q);
     printf("请编号为%d顾客准备\n",date->num);
   }
}


DATE *cycqueuepeek(cycqueue *q)
{
   if(q->tail==q->head)
   {
     printf("队为空");
	 return NULL ;
	}
   else
   {
     return &(q->date[(q->head+1)%SIZE]);
   }
}


int cycqueuelen(cycqueue *q)
{
   int n;
   n=q->tail-q->head;
   if(n<0)
   
     n=SIZE+n;
   return n;  
} 


最重要的是判断队满的条件,当构成循环队列时,判断队列为空(p->head=p->tail),当循环队列充满时也是

p->head == p->tail)这个条件,因此为了避免这种情况,就让队列差一个元素充满时,就判断队列以满,

所以((p->head+1)%size == p->tail)判断队列已满。


假设某银行有n个窗口对外接待客户,从早晨银行9点开门起到5点关门,不断有客户进入银行,由于每个窗口在某个时刻只能接待一个客户。因此在客户人数众多时需要在每个窗口前顺次排队,对于刚进银行的客户。如果某个窗口的业务员正空闲,则可上前输业务。反之,若个窗口均有客户所占,他便会排在为数最少的队伍后面。编制一个程序模拟银行的这种业务活动并计算一天中客户在银行的平均逗留时间。 首先从题目分析:N个窗口排队,首先就要建立N个队列来存储排队的用户信息 ,然后算出那个队列最短就用户就到那个队伍排队,同时通过随机生成他办理业务的时间和到来的时间,通过计算用户的到来时间和离开时间就可以计算出某个用户在银行的逗留时间 ;话不多说直接上代码。 下面是主函数,由用户输入银行上下班时间,计算营业多长时间Total_time,如何当前时间小于关门的时间,就一直进入customer_into();函数,用户不断的进来 #define FALSE 0 #define TRUE 1 #define QUEUE_SUM 4 //窗口的数量 int rand_business_time=0, rand_wait_time=0;//定义办理时间,等待时间变量 int Total_time=0,now_tim=0;//总时间,当前时间 int go_time[4] = {0,0,0,0};//定义数组存储每个窗口最后一位办理完业务的时间 int sum_nan[4] = {0,0,0,0};//定义数组存储每个窗口排队的人数 int Sign=TRUE; //是否关门标志位 float Sum_Wait_Time=0.0; //等待的总时间 float Sun_Nan=0.0; //总人数 int open_time;//开门时间 int off_time; //关门时间 int main() { Prompted(); printf("输入银行的24小时制营业时间:如营业时间为9:00--17:00,则应输入:9,17\n"); scanf("%d,%d", &open;_time,&off;_time); Total_time = (off_time - open_time) * 60;//计算银行总营业多少分钟 for (int i = 0; i now_time) { customer_into(); //客户进入函数 } printf("银行关门时间到不再接收客人\n\n"); for (int i = 0; i < QUEUE_SUM; i++) { DisposeQueue(&queue;[i],i);//输入在银行关门前还没有办理完业务的客户信息 } printf("平均时间为%.2f分钟",Sum_Wait_Time/Sun_Nan); /*通过各个客户的总等待时间总和/总人数算出逗留平均时间*/ _getch(); return 0; }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值