Question: Need this to be done in Java thanks !! You have an empty sequence, and you will be given N queries. Each query is one
You have an empty sequence, and you will be given N queries. Each query is one of these three types: 1 x Push the element x into the stack. 2 -Delete the element present at the top of the stack. 3 -Print the maximum element in the stack Input Format The first line of input contains an integer, N. The next N lines each contain an above mentioned query. (It s guaranteed that each query is valid.) Constraints 1 S N 10% 1 S 10 1 S type s 3 Output Format For each type 3 query, print the maximum element in the stack on a new line. Sample Input 10 1 97 1 20 1 26 1 20 1 91 Sample Output 26 91
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
