-
Notifications
You must be signed in to change notification settings - Fork 0
/
lec59_stackqueshard.cpp
81 lines (74 loc) · 1.28 KB
/
lec59_stackqueshard.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
#include<iostream>
#include <stack>
#include <climits>
using namespace std;
class SpecialStack
{
stack <int> s;
int mini;
public:
void push(int data)
{
if (s.empty())
{
s.push(data);
mini = data;
}
else
{
if (data < mini)
{
int val = 2 * data - mini;
s.push(val);
mini = data;
}
else
{
s.push(data);
}
}
}
int pop()
{
if (s.empty())
return -1;
int curr = s.top();
s.pop();
if (curr > mini)
{
return curr;
}
else
{
int prevmini = mini;
int val = 2 * mini - curr;
mini = val;
return prevmini;
}
}
int top()
{
if (s.empty())
return -1;
int curr = s.top();
if (curr < mini)
{
return mini;
}
else
return curr;
}
bool isEmpty()
{
if (!s.empty())
return false;
return true;
}
int getMin()
{
if (!s.empty())
return mini;
else
return -1;
}
};