栈与队列(Java)

本文介绍了Java中栈和队列的基本概念和常用操作,栈基于Vector实现,遵循先入后出原则;队列是一个接口,继承自Collection,遵循先入先出原则。同时,展示了如何使用栈实现队列(LeetCode 232题)以及如何使用队列实现栈(LeetCode 225题)。通过这两个实现,揭示了数据结构之间的转换技巧。
摘要由CSDN通过智能技术生成

JAVA中栈类是继承了Vector实现的,基本特征是先入后出,并且只能在一侧进出

方法作用
empty()栈空返回真,否则返回假
peek()获取栈顶值,不出栈
pop()栈顶值出栈
push()入栈

队列

JAVA中队列是接口,继承了Collection类,先入先出。

方法作用
add()入队(若失败则抛出IllegalStateException异常)
offer()将指定元素插入队列,成功返回true,否则返回false
element()获取队头的值,但不出队(若队列为空则抛出异常NoSuchElementException)
peek()获取队头的值,但不出队(若队列为空则返回null
poll()获取并移除队头(若队列空则返回null)

用栈实现队列

(leetcode.232)

class MyQueue {
    Stack<Integer> in;
    Stack<Integer> out;
    public MyQueue() {
        in = new Stack<Integer>();
        out = new Stack<Integer>();
    }
    
    public void push(int x) {
        in.push(x);
    }
    
    public int pop() {
        transfer();
        return out.pop();
    }
    
    public int peek() {
        transfer();
        return out.peek();
    }
    
    public boolean empty() {
        return (in.isEmpty() && out.isEmpty());
    }

    public void transfer() {
        if(! out.isEmpty()) return;
        while(! in.isEmpty()) out.push(in.pop());
    }
}

用队列实现栈

(leetcode.225)

class MyStack {
    Queue<Integer> q1;
    Queue<Integer> q2;
    public MyStack() {
        q1 = new LinkedList<Integer>();
        q2 = new LinkedList<Integer>();
    }
    
    public void push(int x) {
        if(q1.isEmpty()) {
            q1.offer(x);
            while(! q2.isEmpty()) q1.offer(q2.poll());
        } else {
            q2.offer(x);
            while(! q1.isEmpty()) q2.offer(q1.poll());
        }
    }
    
    public int pop() {
        return (q1.isEmpty() ? q2 : q1).poll();
    }
    
    public int top() {
        return (q1.isEmpty() ? q2 : q1).peek();
    }
    
    public boolean empty() {
        return (q1.isEmpty() && q2.isEmpty());
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值