Fellow me on GitHub
摘要: 1 #include 2 #include 3 4 using namespace std; 5 6 template 7 class STACK 8 { 9 public: 10 STACK(int sz = 100):top(-1), maxLen(sz) 11 { 12 date = new T[sz]; 13 as... 阅读全文
posted @ 2016-09-26 22:29 Penn000 阅读(155) 评论(0) 推荐(0) 编辑