摘要:
#include<cstdio> #include<algorithm>using namespace std;const int maxn=1000;int main(){ int n,q,x,a[maxn],kase=0; while(scanf("%d%d",&n,&q)==2&&n) { p 阅读全文
摘要:
#include #include #define MAXSIZE 100 #define N 2 struct car { int ID;//汽车牌照号 int Time; // 汽车到达或离去时间 char Su;//汽车到达还是离去 int position;//汽车在停车场或过道的位置 }; typedef struct car Car; struct SNode//两个栈共... 阅读全文