remove unecessary code from stack and readd printing to Treiber stack

This commit is contained in:
2021-01-10 22:00:38 +01:00
parent 37a2584ffc
commit 66759e77e8
4 changed files with 14 additions and 12 deletions

View File

@@ -12,4 +12,5 @@ class TreiberStack:public Stack{
void push(int element);
int pop();
int size();
std::string print_stack();
};