题解 | #包含min函数的栈#

包含min函数的栈

https://www.nowcoder.com/practice/4c776177d2c04c2494f2555c9fcc1e49

import java.util.Stack;

public class Solution {

    private Stack<Integer> stack1 = new Stack<>();
    private Stack<Integer> stack2 = new Stack<>();

    
    public void push(int node) {
        if (stack1.isEmpty()) {
            stack1.push(node);
            stack2.push(node);
        } else {
            int val = stack2.peek();
            if (val < node) {
                stack2.push(val);
            } else {
                stack2.push(node);
            }
            stack1.push(node);
        }
    }
    
    public void pop() {
        if (stack1.isEmpty()) {
            throw new RuntimeException("The stack is empty");
        }
        stack1.pop();
        stack2.pop();
    }
    
    public int top() {
        if (stack1.isEmpty()) {
            throw new RuntimeException("The stack is empty");
        }
        return stack1.peek();
    }
    
    public int min() {
        if (stack2.isEmpty()) {
            throw new RuntimeException("The stack is empty");
        }
        return stack2.peek();
    }
}

全部评论

相关推荐

11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务