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