-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathll_stack.cpp
116 lines (99 loc) · 1.67 KB
/
ll_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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
Time complexity for
push
pop
size
isEmpty
peek
should be O(1)
hence it is preferred to insert/remove at head
*/
#include <iostream>
using namespace std;
struct Node
{
int data;
Node *next;
Node(int d)
{
data = d;
next = NULL;
}
};
struct MyStack
{
Node *head;
int sz;
MyStack()
{
head = NULL;
sz = 0;
}
void push(int x)
{
Node *newNode = new Node(x);
newNode->next = head;
head = newNode;
++sz;
}
int pop()
{
if(head == NULL)
{
cout << "\nUnderflow: you are popping from an empty stack";
return INT8_MIN;
}
int res = head->data;
Node *ref = head;
head = head->next;
delete (ref);
--sz;
return res;
}
int getSize()
{
return sz;
}
bool isEmpty()
{
return (head == NULL);
}
int peek()
{
if (head == NULL)
{
cout << "\nUnderflow: you are popping from an empty stack";
return INT8_MIN;
}
return head->data;
}
void printStack()
{
cout << "\nStack status :: \n";
Node* curr = head;
while(curr != NULL)
{
cout << curr->data << " ";
curr = curr->next;
}
cout << "\n";
}
};
int main()
{
MyStack *stk = new MyStack();
cout<<stk->pop();
stk->push(10);
stk->push(20);
stk->push(30);
cout << "\nSize :: " << stk->getSize();
stk->printStack();
return 0;
}
/*
op
Underflow: you are popping from an empty stack-128
Size :: 3
Stack status ::
30 20 10
*/