剑指 Offer 第 1 天栈与队列(简单)

本文介绍了两种使用栈实现的数据结构:一种是用两个栈实现队列的功能,通过栈的特性实现了入队(push)和出队(pop)操作;另一种是带有min函数的栈,能够在常数时间内获取栈内的最小值。这两个数据结构都展示了栈在解决特定问题时的灵活性。
摘要由CSDN通过智能技术生成

剑指 Offer 09. 用两个栈实现队列https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof/

import java.util.Stack;

class CQueue {
    Stack<Integer> a;
    Stack<Integer> b;

    public CQueue() {
        a = new Stack<Integer>();
        b = new Stack<Integer>();
    }

    public void appendTail(int value) {
        a.push(value);
    }

    public int deleteHead() {
        if(b.empty()) {
            while(!a.empty()){
                b.push(a.pop());
            }
        }

        if(b.empty()){
            return -1;
        }
        else{
            return b.pop();
        }
    }
}

/**
 * Your CQueue object will be instantiated and called as such:
 * CQueue obj = new CQueue();
 * obj.appendTail(value);
 * int param_2 = obj.deleteHead();
 */

剑指 Offer 30. 包含min函数的栈icon-default.png?t=L9C2https://leetcode-cn.com/problems/bao-han-minhan-shu-de-zhan-lcof/

 

import java.util.Stack;

public class MinStack {
    Stack<Integer> a;
    Stack<Integer> b;
    /** initialize your data structure here. */
    public MinStack() {
        a = new Stack<Integer>();
        b = new Stack<Integer>();
    }
    public void push(int x) {
        a.push(x);
        if(b.empty() || b.peek() >= x) {
            b.push(x);
        }
    }

    public void pop() {
        int t = a.pop();
        if(t == b.peek()) {
            int k = b.pop();
        }
    }

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

    public int min() {
        int pos = b.size() - 1;
        return b.peek();
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值