// Stack using LL // #ifndef STACK_H_ #define STACK_H_ #include "LL.h" class Stack { private: LL list; public: bool empty() const { return list.empty(); } void push( long d) { list.push_front(d); } long pop() { return list.pop_front(); } void print() const { list.print(); } }; #endif // STACK_H_