mirror of
https://github.com/tiennm99/Nhut.git
synced 2026-06-08 18:15:33 +00:00
18 lines
174 B
C++
18 lines
174 B
C++
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
#include "List.h"
|
|
|
|
class Stack
|
|
{
|
|
private:
|
|
List *stack;
|
|
|
|
public:
|
|
Stack();
|
|
void push(int);
|
|
int pop();
|
|
~Stack();
|
|
};
|
|
|
|
#endif // STACK_H
|