剑指offer-包含min函数的栈

Posted loyolh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-包含min函数的栈相关的知识,希望对你有一定的参考价值。

题目描述

定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。

注意:保证测试中不会当栈为空的时候,对栈调用pop()或者min()或者top()方法。

import java.util.Stack;

public class Solution {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();
    
    public void push(int node) {
        stack1.push(node);
        if(stack2.empty())
            stack2.push(node);
        if(node<stack2.peek())
            stack2.push(node);
        
    }
    
    public void pop() {
        if(stack1.peek()==stack2.peek()){
            stack1.pop();
            stack2.pop();
        }
        else{
            stack1.pop();
        }
        
    }
    
    public int top() {
        return stack1.peek();
        
    }
    
    public int min() {
        return stack2.peek();
        
    }
}

 

以上是关于剑指offer-包含min函数的栈的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer包含min函数的栈python

包含min函数的栈-剑指Offer

剑指offer(20)包含min函数的栈

剑指Offer30包含min函数的栈

LeetCode(剑指 Offer)- 30. 包含min函数的栈

剑指offer:面试题21包含min函数的栈