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