汽车管理程序.doc

汽车管理程序.doc

ID:48593471

大小:44.00 KB

页数:6页

时间:2020-01-28

汽车管理程序.doc_第1页
汽车管理程序.doc_第2页
汽车管理程序.doc_第3页
汽车管理程序.doc_第4页
汽车管理程序.doc_第5页
资源描述:

《汽车管理程序.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、#include#include#defineN2/*停车场内最多的停车数目*/#defineM3/*候车场内做多的停车数目*/#definePrice2/*每单位时间内停车费用*/typedefstruct{intCarNo[N];/*车牌号*/intCarTime[N];/*进场时间*/inttop;}SqStack;/*定义顺序栈类型*/typedefstruct{intCarNo[M];intfront,rear;}SqQueue;/*以下是顺序栈的基本算法*/SqStack*InitStack(){SqSt

2、ack*s;s=(SqStack*)malloc(sizeof(SqStack));s->top=-1;returns;}intStackEmpty(SqStack*s){return(s->top==-1);}intStackFull(SqStack*s){return(s->top==N-1);}intPush(SqStack*s,inte1,inte2){if(s->top==N-1)return0;/*栈已满无法插入*/else{s->top++;s->CarNo[s->top]=e1;s->CarTime[s->top]=e2;return1;

3、/*插入成功*/}}intpop(SqStack*s,int*e1,int*e2){if(s->top<0)return0;/*栈已空无法弹出元素*/else{*e1=s->CarNo[s->top];*e2=s->CarTime[s->top];s->top--;return1;/*出栈成功*/}}voidDispStack(SqStack*s)/*输出栈中元素*/{inti;for(i=s->top;i>-1;i--)printf("%d",s->CarNo[i]);printf("");}/*以下是循环队列的基本算法*/SqQueue*Init

4、Queue(){SqQueue*q;q=(SqQueue*)malloc(sizeof(SqQueue));q->front=q->rear=0;returnq;}intQueueEmpty(SqQueue*q){return(q->front==q->rear);}intQueueFull(SqQueue*q)/*判断循环队列是否为满,注意与顺序队列的区别*/{return((q->rear+1)%M==q->front);}intenQueue(SqQueue*q,inte){if((q->rear+1)%M==q->front)return0;el

5、se{q->rear=(q->rear+1)%M;q->CarNo[q->rear]=e;return1;}}intdeQueue(SqQueue*q,int*e){if(q->front==q->rear)return0;else{q->front=(q->front+1)%M;*e=q->CarNo[q->front];/*出队的对头元素到参数e中*/return1;}}voidDispQueue(SqQueue*q)/*输出队中元素*/{inti;i=(q->front+1)%M;printf("%d",q->CarNo[i]);while((q-

6、>rear-i+M)%M>0){i=(i+1)%M;printf("%d",q->CarNo[i]);}printf("");}voidmain(){intcomm;/*每一种情况*/intno,time,e1,e2;/*no为车牌号,time为停车时间e2为停车时间*/inti,j;SqStack*St,*St1;/*st为停车场,St1为临时车场*/SqQueue*Qu;/*Qu为候车场*/St=InitStack();St1=InitStack();Qu=InitQueue();do{printf("输入指令(1:到达2:离开3:停车场4:候车

7、场0:退场):");scanf("%d%d%d",&comm,&no,&time);switch(comm){case1:/*汽车到达*/if(!StackFull(St))/*停车场不满*/{Push(St,no,time);printf(">>停车场位置:%d",St->top+1);}else/*停车场满*/{if(!QueueFull(Qu))/*停车场满但候车场不满*/{enQueue(Qu,no);printf(">>候车场位置:%d",Qu->rear);}elseprintf("候车场已满,不能停车!");/*停车场满,候车场

8、也满*/}break;case2:/*汽车离开*/for(i=-1;i<=St-

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。