[LeetCode] Min Stack

简介: Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) – Push element x onto stack. pop() – Removes the element on top of the stack. top(

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

push(x) – Push element x onto stack.
pop() – Removes the element on top of the stack.
top() – Get the top element.
getMin() – Retrieve the minimum element in the stack.

  • 首次解题思路
    对每个结点增加一个最小值成员,该成员表示当该结点是栈顶元素时最小值的大小。结果提交之后LeetCode返回了Memory limited Error错误。

  • 首次尝试的代码

struct LinkNode
{
    int data;
    int min;
    LinkNode* next;
};

class MinStack {
public:
    MinStack():high(NULL){

    }

    void push(int x) {
        LinkNode* node = new LinkNode;
        node->data = x;
        if (high == NULL)
        {
            node->min = x;
        }
        else
        {
            int temp = x < high->min ? x : high->min;
            node->min = temp;
        }
        node->next = high;
        high = node;
    }

    void pop() {
        if (high)
        {
            LinkNode* temp = high;
            high = high->next;
            delete temp;
        }
    }

    int top() {
        if (high)
        {
            return high->data;
        }
    }

    int getMin() {
        return high->min;
    }

private:
    LinkNode* high;
};
  • 第二次解题思路
    用两个标准库的栈来维护这个MinStack,一个栈保存元素,另一个栈保存最小值。此时,可以对第二个栈的大小进行压缩。
  • 实现代码
/*************************************************************
    *  @Author   : 楚兴
    *  @Date     : 2015/2/8 16:17
    *  @Status   : Accepted
    *  @Runtime  : 71 ms
*************************************************************/
#include <iostream>
#include <stack>
using namespace std;

class MinStack {
public:
    stack<int> num;
    stack<int> min;
    void push(int x) {
        if (min.size() == 0)
        {
            min.push(x);
        }
        else
        {
            if (x <= min.top())
            {
                min.push(x);
            }
        }
        num.push(x);
    }

    void pop() {
        if (!num.empty())
        {
            if (num.top() == min.top())
            {
                min.pop();
            }
            num.pop();
        }
    }

    int top() {
        if (!num.empty())
        {
            return num.top();
        }       
    }

    int getMin() {
        if (!num.empty())
        {
            return min.top();
        }       
    }
};
目录
相关文章
|
7月前
|
算法 安全 Java
【数据结构与算法】6、栈(Stack)的实现、LeetCode:有效的括号
【数据结构与算法】6、栈(Stack)的实现、LeetCode:有效的括号
43 0
|
存储 算法 测试技术
从小白开始刷算法 Stack 栈篇 leetcode.496
从小白开始刷算法 Stack 栈篇 leetcode.496
|
算法
从小白开始刷算法 Stack 栈篇 leetcode.20
从小白开始刷算法 Stack 栈篇 leetcode.20
LeetCode 225. Implement Stack using Queues
使用队列实现栈的下列操作: push(x) -- 元素 x 入栈; pop() -- 移除栈顶元素; top() -- 获取栈顶元素; empty() -- 返回栈是否为空
82 0
LeetCode 225. Implement Stack using Queues
Leetcode-Easy 155. Min Stack
Leetcode-Easy 155. Min Stack
97 0
Leetcode-Easy 155. Min Stack
LeetCode 225:用队列实现栈 Implement Stack using Queues
题目: 使用队列实现栈的下列操作: push(x) -- 元素 x 入栈 pop() -- 移除栈顶元素 top() -- 获取栈顶元素 empty() -- 返回栈是否为空 Implement the following operations of a stack using queues.
1071 0
LeetCode 155:最小栈 Min Stack
LeetCode 155:最小栈 Min Stack 设计一个支持 push,pop,top 操作,并能在常数时间内检索到最小元素的栈。 push(x) -- 将元素 x 推入栈中。 pop() -- 删除栈顶的元素。
802 0
LeetCode 155 Min Stack(最小栈)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50610602 翻译 设计支持push、pop、top和在常量时间内检索最小元素的栈。
711 0
|
算法
LeetCode 225 Implement Stack using Queues(用队列来实现栈)(*)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50551035 翻译 用队列来实现栈的如下操作。
1379 0