155. 最小栈

这篇博客介绍了两种实现带有最小元素检索功能的栈的Java代码。第一种使用两个栈,一个存储所有元素,另一个存储最小元素;第二种使用一个链表节点,每个节点包含当前值和最小值。这两种方法都能在常数时间内完成push、pop、top操作,并能快速获取栈中的最小元素。
摘要由CSDN通过智能技术生成

 



设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。

class MinStack {

	/* 用来存放正常数据 */
	private Stack<Integer> stack;
	/* 用来存放最小数据 */
	private Stack<Integer> minStack;

    /** initialize your data structure here. */
    public MinStack() {
    	stack = new Stack<>();
    	minStack = new Stack<>();
    }

    public void push(int x) {
    	stack.push(x);
    	if (minStack.isEmpty()) {
    		minStack.push(x);
    	} else {
    		minStack.push(Math.min(x, minStack.peek()));
    	}
    }

    public void pop() {
    	stack.pop();
    	minStack.pop();
    }

    public int top() {
    	return stack.peek();
    }

    public int getMin() {
    	return minStack.peek();
    }
}



class MinStack {

private Node head;

    /** initialize your data structure here. */
    public MinStack() {
    	head = new Node(0, Integer.MAX_VALUE, null);
    }

    public void push(int x) {
    	head = new Node(x, Math.min(x, head.min), head);
    }

    public void pop() {
    	head = head.next;
    }

    public int top() {
    	return head.val;
    }

    public int getMin() {
    	return head.min;
    }

    private static class Node {
    	public int val;
    	public int min;
    	public Node next;
		public Node(int val, int min, Node next) {
			this.val = val;
			this.min = min;
			this.next = next;
		}
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值