27 lines
No EOL
539 B
C++
27 lines
No EOL
539 B
C++
#include "stack.h"
|
|
|
|
// template <class T>
|
|
// void Stack<T>::push (T const& elem)
|
|
// {
|
|
// _elems.add(elem);
|
|
// }
|
|
|
|
// template <class T>
|
|
// T Stack<T>::pop ()
|
|
// {
|
|
// if (_elems.getused()) {
|
|
// return NULL;
|
|
// }
|
|
// // 删除最后一个元素
|
|
// return _elems.remove_back()
|
|
// }
|
|
|
|
// template <class T>
|
|
// T Stack<T>::top () const
|
|
// {
|
|
// if (_elems.getused()) {
|
|
// return NULL;
|
|
// }
|
|
// // 返回最后一个元素的副本
|
|
// return _elems[_elems.getused()-1];
|
|
// }
|