1. 首页
  2. 编程语言
  3. 其他
  4. 车厢调度源代码(C语言)

车厢调度源代码(C语言)

上传者: 2020-04-22 20:01:03上传 CPP文件 2.67KB 热度 20次
#include #include #include #definemax50 intn; FILE*fp; structsnode{ intdata[max]; inttop; }s; voidInit()//初始化栈 { s.top=-1; } voidpush(intq)//进栈 { s.top++; s.data[s.top]=q; } intpop()//出栈 { inttemp; temp=s.data[s.top]; s.top--; re
下载地址
用户评论