You are given N elements and your task is to Implement a Stack in which you ement in O(1) can get a minimum time. Answer Example 1: Input: push(2) push(3) pop() getMin() push(1) getMin() Output: 2 1 Explanation: In the first test case for query push(2) Insert 2 into the stack. The stack will be {2} push(3) Insert 3 into the stack. The stack will be {2 3} pop() Remove top element from stack Poped element will be 3 the stack will be {2} getMin() Return the minimum element min element will be 2 push(1) Insert 1 into the stack. The stack will be {2 1} getMin() Return the minimum element min element will be 1.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 21SA
icon
Related questions
Question

35

You are given N elements and your task
is to Implement a Stack in which you
ement in O(1)
can get a minimum
time.
Answer
Example 1:
Input: push(2) push(3) pop() getMin()
push(1) getMin() Output: 2 1
Explanation: In the first test case for
query push(2) Insert 2 into the stack.
The stack will be {2} push(3) Insert 3
into the stack. The stack will be {2 3}
pop() Remove top element from stack
Poped element will be 3 the stack will
be {2} getMin() Return the minimum
element min element will be 2 push(1)
Insert 1 into the stack. The stack will be
{2 1} getMin() Return the minimum
element min element will be 1.
Transcribed Image Text:You are given N elements and your task is to Implement a Stack in which you ement in O(1) can get a minimum time. Answer Example 1: Input: push(2) push(3) pop() getMin() push(1) getMin() Output: 2 1 Explanation: In the first test case for query push(2) Insert 2 into the stack. The stack will be {2} push(3) Insert 3 into the stack. The stack will be {2 3} pop() Remove top element from stack Poped element will be 3 the stack will be {2} getMin() Return the minimum element min element will be 2 push(1) Insert 1 into the stack. The stack will be {2 1} getMin() Return the minimum element min element will be 1.
Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning