Loading

摘要: 1 #include 2 #include 3 using namespace std; 4 template 5 class stack 6 { 7 T p[40]; 8 int toop; 9 public: 10 stack() { toop = -1; } 11 void push(T t) { toop++; p... 阅读全文
posted @ 2016-06-03 19:49 ArkiWang 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 template 5 class stack 6 { 7 T p[40]; 8 int toop; 9 public: 10 stack() { toop = -1; } 11 void push(T t) { toop++; p... 阅读全文
posted @ 2016-06-03 18:37 ArkiWang 阅读(264) 评论(0) 推荐(0) 编辑