摘要: //顺序栈 class Stack { private: int size; int top; char *st; public: Stack(int); bool push(char e); bool pop(char &e); }; Stack::Stack(int msize) { size = msize; top = -... 阅读全文
posted @ 2019-03-25 15:20 三十五画生 阅读(300) 评论(0) 推荐(0) 编辑