-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path155. Min Stack (Design + Stack) 20.3.30 Easy
More file actions
118 lines (101 loc) · 3.37 KB
/
155. Min Stack (Design + Stack) 20.3.30 Easy
File metadata and controls
118 lines (101 loc) · 3.37 KB
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
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) -- Push element x onto stack.
pop() -- Removes the element on top of the stack.
top() -- Get the top element.
getMin() -- Retrieve the minimum element in the stack.
Example:
MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);
minStack.getMin(); --> Returns -3.
minStack.pop();
minStack.top(); --> Returns 0.
minStack.getMin(); --> Returns -2.
Solution: ------------------------------------------------------ Design + Stack
---------------------------------------------------------------- O(1) T, O(n) S
class MinStack(object):
def __init__(self):
self.stack = []
"""
initialize your data structure here.
"""
def push(self, x):
"""
:type x: int
:rtype: None
"""
currmin = self.getMin()
if currmin is None or x < currmin: # IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Can not be "if not currmin", must be "if currmin is None" !!!!!!!!!!!!!!!!!
# because first statement include the cases when currmin is 0 instead of None
currmin = x
self.stack.append((x, currmin)) # Design a tuple to store the current value and current minimum number
# At each level, there is a current minimum value and we store it in the tuple
# and for the future, whenever we come to each level, we can access the currmin
# In this way, we can get a O(1) instead of O(n) in the getMin()
# Since we may need to go over all element in the stack to find the minimum
def pop(self):
"""
:rtype: None
"""
self.stack.pop()
def top(self):
"""
:rtype: int
"""
if self.stack == []:
return None
else:
return self.stack[-1][0]
def getMin(self):
"""
:rtype: int
"""
if self.stack == []:
return None
else:
return self.stack[-1][1]
# Your MinStack object will be instantiated and called as such:
# obj = MinStack()
# obj.push(x)
# obj.pop()
# param_3 = obj.top()
# param_4 = obj.getMin()
Java Version:
class MinStack {
/** initialize your data structure here. */
Stack<int[]> s = new Stack<>(); # Must be here !
public MinStack() {
}
public void push(int x) {
int currMin;
if (s.size() == 0) {
currMin = x;
} else {
if (s.peek()[1] > x) {
currMin = x;
} else {
currMin = s.peek()[1];
}
}
s.add(new int[] {x, currMin});
}
public void pop() {
s.pop();
}
public int top() {
return s.peek()[0];
}
public int getMin() {
return s.peek()[1];
}
}
/**
* Your MinStack object will be instantiated and called as such:
* MinStack obj = new MinStack();
* obj.push(x);
* obj.pop();
* int param_3 = obj.top();
* int param_4 = obj.getMin();
*/