摘要: 1.定义 #include <iostream> using namespace std; const int N = 100; class CPPStack { private: //数据为私有 char s[N]; //栈的内容保存在s中 int tp; //栈顶指示器,栈空为-1 public 阅读全文
posted @ 2020-04-13 11:56 ananasaa 阅读(201) 评论(0) 推荐(0) 编辑