摘要: struct Stack { char *val; int top, maxSize; }; void init(struct Stack *s, int maxSize) { s->val = malloc(maxSize); s->top = 0; } bool empty(struct Sta 阅读全文
posted @ 2019-05-18 13:59 Lee先森的博客 阅读(205) 评论(0) 推荐(0) 编辑