C语言停车场管理系统源代码.docVIP

  • 126
  • 0
  • 约6.37千字
  • 约 8页
  • 2017-09-11 发布于四川
  • 举报
C语言停车场管理系统源代码

#includestdio.h #includestdlib.h #define stacksize 2 //车站//容量 /////////////////////////////////////////////////////// typedef struct Snode{ int number; float int_time[2]; float bian_time[2]; }record; typedef struct { record *base; record *top; int size; }Stack; ///////////////////////////////////////////////////// typedef struct Qnode{ int number; float int_time[2]; struct Qnode *next; }Qnode,*Queue; typedef struct { Queue front; Queue rear; }Linkqueue; void xunhuan(Stack L,Linkqueue Q); void jixu(Stack L,Linkque

文档评论(0)

1亿VIP精品文档

相关文档