-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-stack.cpp
78 lines (68 loc) · 1.27 KB
/
list-stack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <iostream>
using namespace std;
class Node {
public:
int data;
Node* next;
};
class ListStack {
private:
Node* top;
public:
ListStack() {
top = NULL;
}
int __top__() {
if (isEmpty()) {
cout << "Stack is empty" << endl;
return -1;
}
return top->data;
}
void pop() {
Node* temp = top;
if (isEmpty()) {
cout << "Stack is empty" << endl;
return;
}
else {
top = top->next;
delete temp;
}
}
void push(int value) {
Node* temp = new Node;
temp->data = value;
if (isEmpty()) {
top = temp;
top->next = NULL;
return;
}
temp->next = top;
top = temp;
}
bool isEmpty() {
return top == NULL;
}
void print() {
Node* temp = top;
while(temp != NULL) {
cout << temp->data << " ";
temp = temp->next;
}
}
};
int main() {
ListStack stack;
stack.push(1);
stack.push(2);
stack.push(3);
stack.push(4);
stack.print();
cout << endl;
stack.pop();
stack.print();
cout << endl;
cout << stack.__top__() << endl;
return 0;
}