判斷字符串是否爲迴文數(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:
相關文章
相關標籤/搜索