-
Notifications
You must be signed in to change notification settings - Fork 1
/
094_Min Stack.cpp
248 lines (205 loc) · 3.89 KB
/
094_Min 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Time Complexity -> O(N) overal will be O(Q*N) , where Q is number of queries.
// Space Complexity -> O(2N)
#include <bits/stdc++.h>
// Implement class for minStack.
class minStack
{
// Write your code here.
private:
stack<int> st1, st2;
public:
// Constructor
minStack()
{
// Write your code here.
}
// Function to add another element equal to num at the top of stack.
void push(int num)
{
// Write your code here.
st1.push(num);
}
// Function to remove the top element of the stack.
int pop()
{
// Write your code here.
if(st1.empty())
return -1;
int val = st1.top();
st1.pop();
return val;
}
// Function to return the top element of stack if it is present. Otherwise return -1.
int top()
{
// Write your code here.
if(!st1.empty())
{
return st1.top();
}
return -1;
}
// Function to return minimum element of stack if it is present. Otherwise return -1.
int getMin()
{
// Write your code here.
if(!st1.empty())
{
int mini = INT_MAX;
while(!st1.empty())
{
mini = min(mini, st1.top());
st2.push(st1.top());
st1.pop();
}
while(!st2.empty())
{
st1.push(st2.top());
st2.pop();
}
return mini;
}
return -1;
}
};
// Time Complexity -> O(1)
// Space Complexity -> O(2N)
#include <bits/stdc++.h>
// Implement class for minStack.
class minStack
{
// Write your code here.
private:
stack<pair<int,int>> st;
public:
// Constructor
minStack()
{
// Write your code here.
}
// Function to add another element equal to num at the top of stack.
void push(int num)
{
// Write your code here.
if(st.empty())
st.push({num, num});
else
{
if(num < st.top().second)
st.push({num, num});
else
st.push({num, st.top().second});
}
}
// Function to remove the top element of the stack.
int pop()
{
// Write your code here.
if(!st.empty())
{
int val = st.top().first;
st.pop();
return val;
}
return -1;
}
// Function to return the top element of stack if it is present. Otherwise return -1.
int top()
{
// Write your code here.
if(!st.empty())
{
return st.top().first;
}
return -1;
}
// Function to return minimum element of stack if it is present. Otherwise return -1.
int getMin()
{
// Write your code here.
if(!st.empty())
{
return st.top().second;
}
return -1;
}
};
// Time Complexity -> O(1)
// Space Complexity -> O(N)
#include <bits/stdc++.h>
// Implement class for minStack.
class minStack
{
// Write your code here.
private:
long long mini;
stack<long long> st;
public:
// Constructor
minStack()
{
// Write your code here.
while(!st.empty())
st.pop();
mini = INT_MAX;
}
// Function to add another element equal to num at the top of stack.
void push(int num)
{
// Write your code here.
if(st.empty())
{
mini = num;
st.push(num);
}
else{
if(num < mini)
{
st.push((2 * num)*1LL - mini);
mini = num;
}
else
{
st.push(num);
}
}
}
// Function to remove the top element of the stack.
int pop()
{
// Write your code here.
if(st.empty())
return -1;
long long val = st.top();
if(val < mini)
{
long long x = mini;
mini = 2 * mini - val;
st.pop();
return x;
}
st.pop();
return val;
}
// Function to return the top element of stack if it is present. Otherwise return -1.
int top()
{
// Write your code here.
if(st.empty())
return -1;
if(st.top() < mini)
{
return mini;
}
else
return st.top();
}
// Function to return minimum element of stack if it is present. Otherwise return -1.
int getMin()
{
// Write your code here.
if(st.empty())
return -1;
return mini;
}
};