资源简介

原创的停车场管理系统实验报告,用c语言编写,供大家学习交流使用

资源截图

代码片段和文件信息

#include“stdio.h“
#include“stdlib.h“
#include“string.h“
#define MAX_STOP 5              /*停车位*/
#define MAX_PAVE 100            /*便道位*/
typedef struct
{
char *license_plate;                 /*车牌号*/
char *in_time;                          /*进入停车场的时间*/
char *out_time;                         /*离开停车场的时间*/
char state;                         /*状态,S表示停车位,P表示便道,L表示离开*/ 
}CAR;
typedef struct                         /*定义停车为类型*/
{
CAR STOP[MAX_STOP];
int top;
}STOPPING;
typedef struct                        /*定义便道类型*/
{
CAR PAVE[MAX_PAVE];
int frontrear;
}PAVEMENT;
typedef struct                         /*定义辅助栈类型*/
{
CAR BUFF[MAX_STOP];
int top;
}BUFFER;

STOPPING *init_stopping()                    /*初始化停车位*/
{
STOPPING *s;
s=(STOPPING *)malloc(sizeof(ST

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      88064  2008-11-08 18:32  停车场实验报告.doc

     文件       7386  2008-11-08 18:11  car_stop.cpp

----------- ---------  ---------- -----  ----

                95450                    2


评论

共有 条评论