-
Notifications
You must be signed in to change notification settings - Fork 93
/
MinStack.java
87 lines (72 loc) · 1.21 KB
/
MinStack.java
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
package questions.virendra;
public class MinStack {
Node top;
public void push(int x)
{
if(top == null)
{
top = new Node(x);
}
else
{
Node temp = new Node(x);
temp.next = top;
temp.min = Math.min(top.min, x);
top = temp;
}
}
public void pop()
{
if(top == null)
{
System.out.println("Stack empty!");
return;
}
top = top.next;
}
public int top()
{
if(top == null)
{
System.out.println("Stack empty!");
return Integer.MAX_VALUE;
}
return top.value;
}
public int min()
{
if(top == null)
{
System.out.println("Stack empty!");
return Integer.MAX_VALUE;
}
return top.min;
}
public static void main(String args[])
{
MinStack mStack = new MinStack();
mStack.push(7);
mStack.push(8);
System.out.println(mStack.min());
mStack.push(5);
mStack.push(9);
System.out.println(mStack.min());
mStack.push(5);
mStack.push(2);
System.out.println(mStack.min());
mStack.pop();
mStack.pop();
System.out.println(mStack.min());
}
}
class Node {
int value;
int min;
Node next;
Node(int x)
{
value = x;
next = null;
min = x;
}
}