判断字符串是否为回文数(c++ 顺序栈)

#include <iostream> using namespace std; #define MAXSIZE 100 class Stack { public: Stack(); bool pop(char &e); bool push(); bool IsEmpty(); bool huiwen(); char *GetStr(); ~Stack(); private:
相关文章
相关标签/搜索