标签:
template<class TYPE> class Stack { public: Stack(); ~Stack(); void push(const TYPE &); TYPE& top(); const TYPE& top() const; void pop(); bool emtpy() const;
size_t size() const; private: deque<TYPE> m_deq; };
标签:
原文地址:http://www.cnblogs.com/litao-tech/p/4317876.html