[LeetCode] Max Stack 最大栈

Posted Grandyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] Max Stack 最大栈相关的知识,希望对你有一定的参考价值。

 

Design a max stack that supports push, pop, top, peekMax and popMax.

 

  1. push(x) -- Push element x onto stack.
  2. pop() -- Remove the element on top of the stack and return it.
  3. top() -- Get the element on the top.
  4. peekMax() -- Retrieve the maximum element in the stack.
  5. 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.

 

Example 1:

MaxStack stack = new MaxStack();
stack.push(5); 
stack.push(1);
stack.push(5);
stack.top(); -> 5
stack.popMax(); -> 5
stack.top(); -> 1
stack.peekMax(); -> 5
stack.pop(); -> 1
stack.top(); -> 5

 

Note:

  1. -1e7 <= x <= 1e7
  2. Number of operations won‘t exceed 10000.
  3. The last four operations won‘t be called when stack is empty.

 

s

 

 

 

以上是关于[LeetCode] Max Stack 最大栈的主要内容,如果未能解决你的问题,请参考以下文章

716. Max Stack实现一个最大stack

leetcode155 Min Stack

列表的最小值和最大值(不使用 min/max 函数)

leetcode(53) 最大子序和

leetcode 695. Max Area of Island 岛屿的最大面积(中等)

LeetCode 18.队列的最大值