摘要: #define MAXSIZE 10 typedef struct OpNode { char data; struct OpNode *next; }OpNode; typedef struct OpStack { OpNode *top; }OpStack; void op_pop(OpStack *s, char *d); void op_push(Op... 阅读全文
posted @ 2017-08-15 22:13 牛奶无花果 阅读(341) 评论(0) 推荐(0) 编辑