电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

C语言停车场管理系统源代码

C语言停车场管理系统源代码_第1页
1/8
C语言停车场管理系统源代码_第2页
2/8
C语言停车场管理系统源代码_第3页
3/8
#include #include #define stacksize 2 //车站//容量 /////////////////////////////////////////////////////// typedef struct Snode{ int number; float int_time[2]; float bian_time[2]; }record; typedef struct { record *base; record *top; int size; }Stack; ///////////////////////////////////////////////////// typedef struct Qnode{ int number; float int_time[2]; struct Qnode *next; }Qnode,*Queue; typedef struct { Queue front; Queue rear; }Linkqueue; void xunhuan(Stack L,Linkqueue Q); void jixu(Stack L,Linkqueue Q); ///////////////////////////////////////////////////// ///////////////////////////////////////////////////// void InitStack(Stack &L) //堆栈操作 { L.base=(record*)malloc(sizeof(Snode)*stacksize); if(!L.base) exit(0); L.top=L.base; L.size=stacksize; } ///////////////////////////////////////////////////// void input(Stack &L,record h) { *L.top++=h; } /////////////////////////////////////////////////// Snode output(Stack &L,record &e) { e=*--L.top; return e; } int Stackman(Stack L) { if(L.top-L.base==L.size) return 0; else return 1; } int StackEmpty(Stack L) { if(L.base==L.top) return 0; else return 1; } ////////////////////////////////////////////////// ////////////////////////////////////////////////// void Initque(Linkqueue &Q) //队列操作 { Q.front=Q.rear=(Queue)malloc(sizeof(Qnode)); if(!Q.front) exit(0); Q.front->next=NULL; } ////////////////////////////////////////////////// void enqueue(Linkqueue &Q,int number,float time[]) { Queue q; printf("停车场已满,请将车辆停入便道!\n"); 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; } /////////////////////////////////////////////////// void outqueue(Linkqueue &Q,Queue &e) //此处有点问题 { // Qnode *q; // q=(Queue)malloc(sizeof(Qnode)); e=Q.front->next; // Q.f...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

C语言停车场管理系统源代码

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部