• 大小: 5KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: C/C++
  • 标签: VC++  

资源简介

这是一个简易的停车场收费管理系统,希望通过这个简单的程序,使初学VC++的同学对这门语言有一些基础的认识,希望能帮助到需要的同学

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include  //头文件
typedef int ElemType;
const ElemType parksize=2;//停车场停车容量
const ElemType vnumber=10;//车牌号字符数量
const double priceHour=10;//每小时停车收费价格
struct Vehical     //车辆结构体
{
char vhlnum[vnumber]; //车牌号字符数组
time_t ArrivalTime;  //汽车到达时间
time_t DepartTime;   //汽车离开时间
};
struct ParkStack         //停车场类型
{
Vehical pvhl[parksize];
    ElemType top;
};
struct TempStack        //临时栈
{
Vehical tval[parksize];
ElemType top;
};
struct WaitNode        //等待队列节点类型
{
Vehical wval;
WaitNode *next;
};
struct WaitQueue      //等待链队类型
{
    WaitNode *front;
    WaitNode *rear;
};
void InitPS(ParkStack &ps)  //初始化停车场
{
    ps.top=-1;
}
void InitTS(TempStack &ts)  //初始化临时栈
{

评论

共有 条评论