1. Design a max stack that supports push, pop, top, peekMax and popMax.
  2.  
  3. push(x) -- Push element x onto stack.
  4. pop() -- Remove the element on top of the stack and return it.
  5. top() -- Get the element on the top.
  6. peekMax() -- Retrieve the maximum element in the stack.
  7. popMax() -- Retrieve the maximum element in the stack, and remove it. If you find more than one maximum elements, only remove the top-most one.
  8. Example 1:
  9. MaxStack stack = new MaxStack();
  10. stack.push(5);
  11. stack.push(1);
  12. stack.push(5);
  13. stack.top(); -> 5
  14. stack.popMax(); -> 5
  15. stack.top(); -> 1
  16. stack.peekMax(); -> 5
  17. stack.pop(); -> 1
  18. stack.top(); -> 5
  19. Note:
  20. -1e7 <= x <= 1e7
  21. Number of operations won't exceed 10000.
  22. The last four operations won't be called when stack is empty.

1. Solution: add popmax this func, you can pop out max at any time , so max stack to track the max elements  does not work as minstack(leetcode 155) did

add one more stack for helping

1. pop out the ele in the origin stack until find the max

2. push all into temp stack

3. use push(self built func) to push all the ele from temp stack into original stack

  1. class MaxStack {
  2. //becasuse of popMAx, two stacks is not enough
  3. List<Integer> s1 ;//store ele
  4. List<Integer> s2 ;//store min ele
  5. /** initialize your data structure here. */
  6. public MaxStack() {
  7. s1 = new ArrayList<Integer>();
  8. s2 = new ArrayList<Integer>();
  9. }
  10.  
  11. public void push(int x) {
  12. s1.add(x);
  13. if(s2.isEmpty() || s2.get(s2.size()-1) <= x) s2.add(x);
  14. }
  15.  
  16. public int pop() {
  17. if(s1.isEmpty()) return 0;
  18. int ele = s1.remove(s1.size()-1);
  19. if(!s2.isEmpty() && ele == s2.get(s2.size()-1)){
  20. s2.remove(s2.size()-1);
  21. }
  22. return ele;
  23. }
  24.  
  25. public int top() {
  26. if(!s1.isEmpty())
  27. return s1.get(s1.size()-1);
  28. return 0;
  29. }
  30.  
  31. public int peekMax() {
  32. if(!s2.isEmpty())
  33. return s2.get(s2.size()-1);
  34. return 0;
  35. }
  36.  
  37. //handful problem
  38. public int popMax() {
  39. //pop max
  40. if(!s1.isEmpty() && !s2.isEmpty()){
  41. int ele = s2.remove(s2.size() - 1);
  42. List<Integer> s3 = new ArrayList<>();
  43. while(ele != s1.get(s1.size() - 1)){
  44. int temp = s1.remove(s1.size() - 1);
  45. s3.add(temp);
  46. }
  47. s1.remove(s1.size() - 1);
  48. while(!s3.isEmpty()){
  49. push(s3.remove(s3.size()-1));
  50. }
  51. return ele;
  52. }
  53. return 0;
  54. }
  55. }
  56.  
  57. /**
  58. * Your MaxStack object will be instantiated and called as such:
  59. * MaxStack obj = new MaxStack();
  60. * obj.push(x);
  61. * int param_2 = obj.pop();
  62. * int param_3 = obj.top();
  63. * int param_4 = obj.peekMax();
  64. * int param_5 = obj.popMax();
  65. */

2. solution 2: https://leetcode.com/problems/max-stack/discuss/153748/Java-LinkedList-and-PriorityQueue  (using linkedlist and priorityQueue)

Leave a comment u have a question!

716. Max Stack (follow up questions for min stack)的更多相关文章

  1. 带最小值操作的栈 · Min Stack

    [抄题]: 实现一个带有取最小值min方法的栈,min方法将返回当前栈中的最小值. 你实现的栈将支持push,pop 和 min 操作,所有操作要求都在O(1)时间内完成. [思维问题]: [一句话思 ...

  2. [leetcode]716. Max Stack 最大栈

    Design a max stack that supports push, pop, top, peekMax and popMax. push(x) -- Push element x onto ...

  3. 155. Min Stack

    题目: Design a stack that supports push, pop, top, and retrieving the minimum element in constant time ...

  4. [LintCode] Min Stack 最小栈

    Implement a stack with min() function, which will return the smallest number in the stack. It should ...

  5. [CareerCup] 3.2 Min Stack 最小栈

    3.2 How would you design a stack which, in addition to push and pop, also has a function min which r ...

  6. leetcode 155. Min Stack --------- java

    Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. pu ...

  7. Min Stack [LeetCode 155]

    1- 问题描述 Design a stack that supports push, pop, top, and retrieving the minimum element in constant ...

  8. Min Stack

    Min Stack Design a stack that supports push, pop, top, and retrieving the minimum element in constan ...

  9. Java [Leetcode 155]Min Stack

    题目描述: Design a stack that supports push, pop, top, and retrieving the minimum element in constant ti ...

随机推荐

  1. Python入门(1)

    1.编程语言 机器语言:直接用计算机能听懂的二进制指令去编写程序,需要了解硬件的细节 汇编语言:用英文标签取代二进制指令去编写程序,同样需要了解硬件的细节 高级语言:直接用人类能理解的表达方式去编写程 ...

  2. BeautifulSoup库应用实例

    获取博客园本人的积分排名数据: 1. 抓包获取积分排名数据返回接口:http://www.cnblogs.com/belle-ls/mvc/blog/sidecolumn.aspx?blogApp=b ...

  3. knime 设置 小数点精度

    kinme 默认小数精度是保留三位小数. 如果0.0003,knime会自动舍弃,读出0.下面步骤教你怎么把小数精度全部显示. File->references->preferred re ...

  4. 信号和槽:Qt中最差劲的创造

    不要被这个标题唬住了,实际上我是非常认可Qt的.在C++实现的开源产品中没有哪一个的API风格比得上Qt,拥有高度一致性,符合常识,符合直觉,几乎不用学就可以直接上手.或许是由于我们摆脱不了马太效应的 ...

  5. 1.1 js基础

    2.代码从上往下,从左往右执行.      函数声明在哪里不重要,重要的是在哪里调用.      undefined  未定义   3.数据类型  12,5   number     'abc'  字 ...

  6. 【Linux】linux文件夹打包命令

    .tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) ---------------------- ...

  7. 08.StreamReader和StreamWrite的学习

    StreamReader和StreamWrite是用来操作字符的 namespace _21.对StreamReader和StreamWriter的学习 { class Program { stati ...

  8. Xcode10 闪退问题

    最新更新了iOS12,mac10.13.6,xcode10之后,打开之前的项目,只要进行import,xcode就会闪退.那么就来看一下解决方案: Xcode10 新增了一个构建系统起名“New Bu ...

  9. 融云会话界面导航上移-使用IQKeyboardManager

    关于IQKeyBoardManager挤出导航栏的解决方案 方法一: 写在前面 虽然修改后能解决导航栏被挤出去的问题,但是就目前来看是有副作用的,写这篇文章就是想大家来一起讨论,毕竟键盘处理还是比较头 ...

  10. 前端自动分环境打包(vue和ant design)

    现实中的问题:有时候版本上线的时候,打包时忘记切换环境,将测试包推上正式服务器,那你就会被批了. 期望:在写打包的命令行的时候就觉得自己在打包正式版本,避免推包时候的,不确信自己的包是否正确. 既然有 ...