精选优质文档-倾情为你奉上#include #include using namespace std;const int MAX_STOP=4; /定义停车场最大停车数const int MAX_PLATE=10; /定义车牌号最大长度/数据结构定义/定义存储汽车信息的结构体typedef structchar license_plateMAX_PLATE;/汽车牌照号码,定义为一个字符指针类型char state; /汽车当前状态,字符p表示停放在停车位上,字符s表示停放在便道上,每辆车的初始状态用字符i来进行表示CAR;/定义模拟停车场的栈结构typedef structCAR STOPMAX_STOP; /汽车信息的存储空间 int top; /用来指示栈顶位置的静态指针SeqStack;/定义模拟便道的队列结构typedef struct nodeCAR WA