Question
Implement a LIFO stack that has a push(), pop(), and max() function, where max() returns the maximum value in the stack. All of these functions should run in O(1) time.
eg.
1 2 3 4 5 6 7 8 9 10 |
push(1) max() = 1 push(2) max() = 2 push(1) max() = 2 pop() = 1 max() = 2 pop() = 2 max() = 1 |
Once you think that you’ve solved the problem, click below to see the solution.
As always, remember that practicing coding interview questions is as much about how you practice as the question itself. Make sure that you give the question a solid go before skipping to the solution. Ideally if you have time, write out the solution first by hand and then only type it into your computer to verify your work once you've verified it manually. To learn more about how to practice, check out this blog post.
Solution
How was that problem? You can check out the solution in the video below.
Here is the source code for the solution shown in the video:
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 |
public class MaxStack { private class Node { private int value; private Node next; private Node oldMax; } private Node stack; private Node max; public MaxStack() {} public void push(int x) { Node n = new Node(); n.value = x; if (stack == null) { stack = n; } else { n.next = stack; stack = n; } if (max == null || n.value > max.value) { n.oldMax = max; max = n; } } public int pop() { if (stack == null) throw new NullPointerException; Node n = stack; stack = n.next; max = n.oldMax; return n.value; } public int max() { if (max == null) throw new NullPointerException; return max.value; } } |
Did you get the right answer to this coding interview question? Please share your thoughts in the comments below.