摘要: 题意 判断数据结构类型 解析 直接模拟就行 cpp include using namespace std; const int maxn = 1e4 + 10; bool isstack, isque, ispri; struct Stack { int top, st[maxn]; void c 阅读全文
posted @ 2018-11-27 21:39 AlessandroChen 阅读(174) 评论(0) 推荐(0) 编辑