I have a stack which contains some integer data. I want to find out the min value from Stack in O(1) time. Any idea?
PS: There is no ordering (increasing/decreasing) of data in Stack.
Thanks,
Naveen
|
4
|
I have a stack which contains some integer data. I want to find out the min value from Stack in O(1) time. Any idea? PS: There is no ordering (increasing/decreasing) of data in Stack. Thanks, Naveen
|
||||||
|
|
|
Use two stacks. One is the data, one is the minimums. When you push onto the data stack, push the new minimum onto the minimums stack (the new minimum is the min of the item you're pushing and whatever is currently on the top of the minimums stack), and when you pop, pop off of both stacks (so that the two stacks always have the same number of elements). To find the minimum element, just look at the top of the minimums stack. Pushing, popping and finding the min value are O(1). |
||||||||||||
|
|
|
A stack by definition is |
||
|
|
O(n) is the best you're gonna do - you'd have to check each one of the values and compare them to the aggregator minimum, otherwise how would you know you got the lowest? If you want, you can store the minimum as the values are added, making the pushes more expensive for the benefit of an O(1) read (of the pre-calculated minimum), but that's it. |
||||||||
|
|
|
I am not sure why you expect to do this in constant time for arbitrary length. The best you will be able to do is O(n) |
||||||||||
|
|
|
You'll probably want some kind of priority heap if you want to always pop the least element. If you want to pop what was last pushed, but be able to know the order of the elements remaining in the stack, some kind of search tree e.g. red-black will support deletion of an element from an arbitrary position (your stack would have a pointer to the tree node so when you pop you can find it). If you only need to know the minimum (or max) remaining in the stack then ESRogs' is optimal. |
|||
|
|
|
|
Here is the Python implementation of ESRogs algorithm using lists as stacks:
Here is an example of its usage:
|
||
|
|
|
|
define STACKSIZE 50typedef struct stack { int item[STACKSIZE]; int top; }MULSTACKEX; void InitStack(MULSTACKEX &st) { st.item[STACKSIZE] = 0; st.top = -1; } void Push(MULSTACKEX &st1, MULSTACKEX &st2, int elem) { if(st1.top == -1) { st1.top++; st1.item[st1.top] = elem;
} void Display(MULSTACKEX &st1, MULSTACKEX &st2) { cout<<"stack1 elements: "<"; }
} int Pop(MULSTACKEX &st1, MULSTACKEX &st2) { int elem = 0; if(st1.item[st1.top] == st2.item[st2.top]) { elem = st2.item[st2.top]; st2.top--;
} int FindMin(MULSTACKEX &st2) { int elem = st2.item[st2.top]; return elem; } int _tmain(int argc, TCHAR argv[]) { MULSTACKEX stack1, stack2;
} |
||
|
|