*** 实现stack模板

#include #include using namespace std; template class Stack { public: Stack() { } ~Stack() { } void push(T &e) { m_list.push_front(e); } void pop()...
posted @ 2018-12-25 06:37  super行者  阅读(189)  评论(0编辑  收藏  举报