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

@@ -7,7 +7,6 @@ class Stack {
protected:
ADTOperationQueue * op_queue;
Stack(ADTOperationQueue * queue);
Node* first;
public:
void push(int element);
int pop();