1. 首页
  2. 课程学习
  3. C++/C
  4. 数据结构实验《停车场》

数据结构实验《停车场》

上传者: 2019-01-07 15:27:41上传 CPP文件 4.88KB 热度 30次
数据结构实验《停车场》 #include #include #include #define max 5 #define mav 100 #define M 2.5 typedef struct { char car_num[10]; }car; typedef struct { car Stop[max]; int top; }StopStack;
用户评论