C语言源码实现停车场管理系统
本文实例为大家分享了C语言停车场管理系统的具体代码,供大家参考,具体内容如下
题目要求:
刚开始在Codeblocks下用C语言写的,但是用指针传递参数的时候总是出问题。后来就用C++,但是调用了C的输入输出和文件操作的头文件,所以代码都是C的
main.cpp
#include#include #include #include #include #include #include #defineN100 usingnamespacestd; typedefstruct { charnum[8];//车牌号 longinttime_in; intpos;//车辆的状态,0表示停在便道中,1表示停在停车场 }vehicle;//定义车辆类型 typedefstruct { vehicleveh[N]; inttop; }SqStack;//用栈表示停车场 typedefstructLNode { vehicleveh; structLNode*next; }LinkList;//用单链表表示便道 voidLoad(FILE*,SqStack*,LinkList*); voidShowMenu(int); intMakeChoice(int,int); voidParking(SqStack*,LinkList*); voidBack(SqStack*); voidEnterPkl(SqStack*,LinkList*); voidLeavePath(LinkList*); voidView(SqStack*,LinkList*); voidWrite_and_Quit(FILE*,SqStack*,LinkList*); intmain() { SqStack*pkl; LinkList*path; FILE*fp; pkl=(SqStack*)malloc(sizeof(SqStack)); path=(LinkList*)malloc(sizeof(LinkList)); fp=fopen("Parking_lot.txt","r+"); if(fp==NULL) { printf("数据加载失败!按任意键退出程序"); getch(); return0; } Load(fp,pkl,path); while(1) { system("cls"); ShowMenu(pkl->top); switch(MakeChoice(1,6)) { case1: system("cls"); Parking(pkl,path); break; case2: system("cls"); Back(pkl); break; case3: system("cls"); EnterPkl(pkl,path); break; case4: system("cls"); LeavePath(path); break; case5: system("cls"); View(pkl,path); break; default: system("cls"); Write_and_Quit(fp,pkl,path); return0; } } return0; }
function.cpp
#include#include #include #include #include #include #include #defineN100 usingnamespacestd; typedefstruct { charnum[8];//车牌号 longinttime_in; intpos;//车辆的状态,0表示停在便道中,1表示停在停车场 }vehicle;//定义车辆类型 typedefstruct { vehicleveh[N]; inttop; }SqStack;//用栈表示停车场 typedefstructLNode { vehicleveh; structLNode*next; }LinkList;//用单链表表示便道 voidLoad(FILE*fp,SqStack*pkl,LinkList*path) { pkl->top=-1; path->next=NULL; LinkList*p; charnum[8]; longinttime_in; intpos; while(fscanf(fp,"%s%ld%d\n",num,&time_in,&pos)!=EOF) { if(pos==0)//该车辆在便道中 { //尾插法建立单链表 p=(LinkList*)malloc(sizeof(LinkList)); strcpy(p->veh.num,num); p->veh.time_in=time_in; p->veh.pos=pos; path->next=p; path=p; } else//该车辆在停车场中 { ++pkl->top; strcpy(pkl->veh[pkl->top].num,num); pkl->veh[pkl->top].time_in=time_in; pkl->veh[pkl->top].pos=pos; } } path->next=NULL; } voidShowMenu(intn) { printf("********一个简单的停车场管理系统********\n"); if(n+1==N) printf("***************停车场已满***************\n"); else printf("**********当前停车场共有%03d辆车**********\n",n+1); printf("********说明:停车场每小时收费5元********\n"); printf("****************1.停车******************\n"); printf("****************2.取车******************\n"); printf("*********3.便道车辆进入停车场***********\n"); printf("**************4.离开便道****************\n"); printf("**************5.查看车辆****************\n"); printf("****************6.退出******************\n"); } intMakeChoice(intm,intn) { intjudge; printf("请输入%d~%d\n",m,n); scanf("%d",&judge); while(judge n)//确保输入的是1~n { printf("输入不合法,请输入%d~%d\n",m,n); fflush(stdin);//如果不加这句,输入一些字母会导致函数无限循环 scanf("%d",&judge); } returnjudge; } voidParking(SqStack*pkl,LinkList*path) { LinkList*r; printf("请输入车牌号:"); if(pkl->top veh[++pkl->top].num); time(&(pkl->veh[pkl->top].time_in)); pkl->veh[pkl->top].pos=1; printf("您的车辆已停至%2d号车位\n",pkl->top); } else { fflush(stdin); r=(LinkList*)malloc(sizeof(LinkList)); scanf("%8s",r->veh.num); printf("停车场已满,您要暂时停放在便道中吗?\n"); printf("1.确定2.取消\n"); if(MakeChoice(1,2)==1) { while(path->next!=NULL) path=path->next; r->veh.time_in=0; r->veh.pos=0; path->next=r; r->next=NULL; printf("您的车辆已停放到便道中\n"); } else free(r); } printf("按任意键返回主菜单"); getch(); return; } voidBack(SqStack*pkl) { intn,i=0; longinttime_out; doublehours; vehiclet_pkl[N]; printf("请输入您的车辆所在的车位(目前还有个小问题,前面的车走了之后当前车位会-1):"); n=MakeChoice(0,pkl->top); printf("%2d上的车辆车牌号为%s,您确定要取走该车辆吗?\n",n,pkl->veh[n].num); printf("1.确定2.取消\n"); if(MakeChoice(1,2)==1) { time(&time_out); hours=(time_out-pkl->veh[n].time_in)/3600.0; printf("本次停车共计%lf小时,收费%lf元,请按任意键确认支付\n",hours,hours*5); getch(); for(i=0;pkl->top>=n;--pkl->top,++i)//把第n辆到第pkl->top辆车移到t_pkl t_pkl[i]=pkl->veh[pkl->top]; //此时pkl->top指向第n-1辆车 for(i-=2;i>=0;--i)//把第n+1辆到第pkl->top辆车移回pkl pkl->veh[++pkl->top]=t_pkl[i]; printf("支付成功!\n"); printf("取车成功,按任意键返回主菜单"); getch(); return; } else { printf("按任意键返回主菜单"); getch(); return; } } voidEnterPkl(SqStack*pkl,LinkList*path) { if(pkl->top==N-1) printf("停车场已满!"); else { printf("您确定将便道中第一辆车(车牌号:%8s)停入停车场吗?\n",path->next->veh.num); printf("1.确定2.取消\n"); if(MakeChoice(1,2)==1) { pkl->veh[++pkl->top]=path->next->veh; time(&pkl->veh[pkl->top].time_in); path->next=path->next->next; printf("已停入停车场\n"); } } printf("按任意键返回主菜单"); getch(); return; } voidLeavePath(LinkList*path) { inti=0,n; LinkList*q; printf("请输入要离开便道的车辆的位序:"); scanf("%d",&n); while(i next; } if(path!=NULL) { printf("您确定便道中第%03d辆车(车牌号:%8s)离开便道吗?\n",n,path->veh.num); printf("1.确定2.取消\n"); if(MakeChoice(1,2)==1) { if(path->next!=NULL)//确定离开并且不是便道中最后一辆车 { q=path->next; path->next=q->next; free(q); printf("第%03d辆车已离开便道\n",n); } else//确定离开并且是便道中最后一辆车 { printf("第%03d辆车已离开便道\n",n); q->next=NULL; free(path); } } } else printf("没有找到第%03d辆车\n",n); printf("按任意键返回主菜单"); getch(); return; } voidView(SqStack*pkl,LinkList*path) { inti; longinttime_out; doublehours; time(&time_out); printf("停车场共有%03d辆车:\n",pkl->top+1); for(i=0;i<=pkl->top;++i) { hours=(time_out-pkl->veh[i].time_in)/3600.0; printf("车位:%2d车牌号:%8s停车时长:%lf应缴费用:%lf\n",i,pkl->veh[i].num,hours,hours*5); } printf("便道车辆:\n"); if(path->next==NULL) printf("无\n"); while(path->next!=NULL) { path=path->next; printf("车牌号:%s\n",path->veh.num); } printf("按任意键返回主菜单"); getch(); return; } voidWrite_and_Quit(FILE*fp,SqStack*pkl,LinkList*path) { rewind(fp); LinkList*pre=path,*p=path->next; for(;pkl->top>-1;--pkl->top) fprintf(fp,"%s%ld%d\n",pkl->veh[pkl->top].num,pkl->veh[pkl->top].time_in,pkl->veh[pkl->top].pos); while(p!=NULL) { free(pre); fprintf(fp,"%s%ld%d\n",p->veh.num,p->veh.time_in,p->veh.pos); pre=p; p=pre->next; } free(pre); free(pkl); fclose(fp); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。