摘要: #include #include #include #include typedef struct{ char *base; char *top; int stacksize; }SqStack; int InitStack(SqStack &S){ S.base = (char *)malloc(100*sizeof(char)); ... 阅读全文
posted @ 2017-11-20 22:06 自由的背包 阅读(444) 评论(0) 推荐(0) 编辑