摘要:
#include "stdafx.h"#include #include const int MAXN = 1000 + 10;int n, target[MAXN];int main(){ while(scanf_s("%d",&n,sizeof(n)) == 1) { ... 阅读全文
posted @ 2015-04-17 09:41
码农@163
阅读(145)
评论(0)
推荐(0)
摘要:
#include "stdafx.h"#include #include const int MAXN = 50;int queue[MAXN];int main(){ int n,front,rear; scanf_s("%d",&n,sizeof(n)); for(int i ... 阅读全文
posted @ 2015-04-17 09:06
码农@163
阅读(127)
评论(0)
推荐(0)