欢迎来到天天文库
浏览记录
ID:6380226
大小:53.50 KB
页数:8页
时间:2018-01-12
《c语言停车场管理系统源代码》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、#include#include#definestacksize2//车站//容量///////////////////////////////////////////////////////typedefstructSnode{intnumber;floatint_time[2];floatbian_time[2];}record;typedefstruct{record*base;record*top;intsize;}Stack;/////////////////////////////////////////////////////ty
2、pedefstructQnode{intnumber;floatint_time[2];structQnode*next;}Qnode,*Queue;typedefstruct{Queuefront;Queuerear;}Linkqueue;voidxunhuan(StackL,LinkqueueQ);voidjixu(StackL,LinkqueueQ);//////////////////////////////////////////////////////////////////////////////////////////////////////////voidInit
3、Stack(Stack&L)//堆栈操作{L.base=(record*)malloc(sizeof(Snode)*stacksize);if(!L.base)exit(0);L.top=L.base;L.size=stacksize;}/////////////////////////////////////////////////////voidinput(Stack&L,recordh){*L.top++=h;}///////////////////////////////////////////////////Snodeoutput(Stack&L,record&e){e=
4、*--L.top;returne;}intStackman(StackL){if(L.top-L.base==L.size)return0;elsereturn1;}intStackEmpty(StackL){if(L.base==L.top)return0;elsereturn1;}////////////////////////////////////////////////////////////////////////////////////////////////////voidInitque(Linkqueue&Q)//队列操作{Q.front=Q.rear=(Queu
5、e)malloc(sizeof(Qnode));if(!Q.front)exit(0);Q.front->next=NULL;}//////////////////////////////////////////////////voidenqueue(Linkqueue&Q,intnumber,floattime[]){Queueq;printf("停车场已满,请将车辆停入便道!");q=(Queue)malloc(sizeof(Qnode));q->int_time[0]=time[0];q->int_time[1]=time[1];q->number=number;q->n
6、ext=NULL;Q.rear->next=q;Q.rear=q;}///////////////////////////////////////////////////voidoutqueue(Linkqueue&Q,Queue&e)//此处有点问题??????????????{//Qnode*q;//q=(Queue)malloc(sizeof(Qnode));e=Q.front->next;//Q.front->next=q->next;//deleteq;Q.front->next=Q.front->next->next;if(Q.rear==e){Q.front=Q.re
7、ar;//Q.front=NULL;}}intQEmpty(LinkqueueQ){if(Q.rear==Q.front)return0;elsereturn1;}//////////////////////////////////////////////////////停车场管理操作////////////////////////////////////////////////////voidjixu(StackL,LinkqueueQ){intn;fflush(s
此文档下载收益归作者所有