Frage im Vorstellungsgespräch bei Amazon

implement a stack with a method which can return the minimal value in the stack without remove this value.

Antworten zu Vorstellungsgespräch

Anonym

22. Feb. 2012

implement a stack in which each element record the reference of the minimal value in the previous elements. (or just keep an array to record the reference. can further reduce the space by just recording the decreasing numbers)

2

Anonym

16. Okt. 2012

use a second stack to track the min

2

Anonym

4. März 2012

It's not sufficient just to update the min on push(0. Need to be able to "backtrack" if pop() removes that min as well.

Anonym

3. März 2012

I would have approached it like this: Implement a stack with - fields: size = size of stack, first = first node, min = min node - methods/functions: pop, push, peek, min Then as you insert each element, you update the reference to min. When you call stack.min() - you get a reference to min