摘要: #include #define MaxSize 50 typedef struct{ char data[MaxSize]; int top; }SqStack; void InitStack(SqStack &S){ S.top = -1; } int StackEmpty(SqStack &S){ if(S.top == -1) ... 阅读全文
posted @ 2017-08-05 21:50 式微胡不归 阅读(287) 评论(0) 推荐(0) 编辑