vote up 5 vote down star
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

flag

Data order in Stack by definition purely dependent on how you push. U need to check all elements O(n). Exception can be there if there is some thing more known with respect to data that is pushed. – learner Sep 4 at 4:38
Related, though I'm not sure I'd say it was a duplicate. stackoverflow.com/questions/1042507/… – GMan Sep 4 at 4:46
@GMan: The solution given "stackoverflow.com/questions/1042507/…; takes O(n). My question is, Can we do this in O(1). – Naveen Sep 4 at 5:53

7 Answers

vote up 15 vote down check

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).

link|flag
bravo :-). beat me to it... and everyone said it was impossible! – Tom Sep 4 at 4:44
I wish I could +1 this answer again. I bet you'll earn some badges from this one :-). – Tom Sep 4 at 4:48
@wrang-wrang, why? – Tom Sep 4 at 4:48
2  
A better implementation would keep the minimums stack at 1 element, no matter how many were added to the other, but that's only if you need the minimum for the whole stack, and not for any "substack" in the stack. – Chris Lutz Sep 4 at 4:51
@wrang wrang: Push 1 on regularStack, Push 1 on minStack. Push 2 on regularStack, push 1 on minStack. Push 3 on regularStack, push 1 on minstack... if you pop once or twice (off both stacks), you will still have the correct min value on the top of the minStack. Make sense? – Tom Sep 4 at 4:53
show 21 more comments
vote up 2 vote down

A stack by definition is push/pop (LIFO) data structure. You can't!

link|flag
Actually you can find the minimum value on a Stack, if you use some other data structure (e.g. a second Stack) to hold the popped values. But N pops + N comparisons + N pushes is O(N). – Stephen C Sep 4 at 4:45
@Stephen I said "You can't!" do "O(1) time" :) – AraK Sep 4 at 4:48
vote up 2 vote down

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.

link|flag
The values are already there on the Stack. I only have to find out the minimum value in the Stack. – Naveen Sep 4 at 4:33
@Naveen: the answer is still the same. There are N values on the stack and you have to look at all of them to figure out which is the smallest. That is N comparisons, so the computation is at best O(N). – Stephen C Sep 4 at 4:45
I believe you meant to say: "making the pops more expensive", because in your approach, popping might cause you to have to search for a min. But as already suggested, you can use two stacks. – Tom Sep 4 at 4:45
also, @Stephen C... you mean N - 1 comparisons... still O(n) though :-). – Tom Sep 4 at 4:46
vote up 1 vote down

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)

link|flag
Yes, I know it can be done in O(n) time. I just want to know if it is possible to do in O(1) time also. – Naveen Sep 4 at 4:34
4  
He said, and I quote, "The best you will be able to do is O(n)." So no, you can't do it in O(1). – Chris Lutz Sep 4 at 4:37
This answer doesn't really answer the question. It is answering the question of "what is the big-o for finding the min in a list n elements". It doesn't say anything about the stack data structure or how it can be modified. – Tom Sep 4 at 5:24
Maybe I was thinking too much in the square so to speak ;) but I was answer the question strictly "can you find the min of stack in constant time" If all you have is that stack then the answer is no. – hhafez Sep 4 at 23:58
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Here is the Python implementation of ESRogs algorithm using lists as stacks:

class ConstantStack:
    def __init__(self):
        self.stack = []
        self.min_stack = []
    def push(self,item):
        self.stack.append(item)
        if len(self.min_stack) == 0:
            self.min_stack.append(item)
            return
        # Get the smaller item between the pushed item and the top of the stack
        smallest = min(item,self.min_stack[-1])
        self.min_stack.append(smallest)
    def pop(self):
        self.min_stack.pop()
        return self.stack.pop()
    def min(self):
        # NOTE: min_stack[-1] is equivalent to peek()
        return self.min_stack[-1]

Here is an example of its usage:

>>> s = ConstantStack()
>>> s.push(3)
>>> s.push(7)
>>> s.push(6)
>>> s.push(1)
>>> s.min()
1
>>> s.pop()
1
>>> # Now that 1 is gone, 3 is the next smallest
>>> s.min()
3
>>> s.pop()
6
>>> # 6 was popped but 3 still remains the smallest
>>> s.min()
3
>>> s.pop()
7
>>> s.min()
3
>>> s.pop()
3
link|flag
vote up 0 vote down

define STACKSIZE 50

typedef 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;

	st2.top++;
	st2.item[st2.top] = elem;
}
else
{
	st1.top++;
	st1.item[st1.top] = elem;

	if(elem < st2.item[st2.top])
	{
		st2.top++;
		st2.item[st2.top] = elem;
	}
}

}

void Display(MULSTACKEX &st1, MULSTACKEX &st2) { cout<<"stack1 elements: "<"; }

cout<<endl;
cout<<"stack2 elements: "<<endl;
for(int i = 0; i <= st2.top; i++)
{
	cout<<st2.item[i]<<"->";
}

}

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--;

	elem = st1.item[st1.top];
	st1.top--;
}
else
{
	elem = st1.item[st1.top];
	st1.top--;
}

return elem;

} int FindMin(MULSTACKEX &st2) { int elem = st2.item[st2.top]; return elem; }

int _tmain(int argc, TCHAR argv[]) { MULSTACKEX stack1, stack2;

InitStack(stack1); 
InitStack(stack2);


Push(stack1,stack2,13); 
Push(stack1,stack2,17);
Push(stack1,stack2,5);
Display(stack1,stack2);

int min_elem1 = FindMin(stack2);
cout<<"Min element in the list is: "<<min_elem1<<endl<<endl;

int deletedelem2 = Pop(stack1,stack2);
cout<<"Pop element from the stack:"<< deletedelem2 <<endl<<endl;
Display(stack1,stack2);

cout<<endl<<endl;

Push(stack1,stack2,19);
Push(stack1,stack2,8);
Display(stack1,stack2);

cout<<endl<<endl;

int deletedelem1 = Pop(stack1,stack2);
cout<<"Pop element from the stack:"<< deletedelem1 <<endl<<endl;
Display(stack1,stack2);

int min_elem2 = FindMin(stack2);
cout<<"Min element in the list is: "<<min_elem2<<endl<<endl;

return 0;

}

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.