Leetcode 225. Implement Stack using Queues

本文详细介绍了如何使用两个队列来实现栈的数据结构,并提供了两种版本的C++代码实现。第一种版本使用了两个队列进行操作,而第二种版本简化为仅使用一个队列。每种实现都包含了push、pop、top和empty等基本栈操作的详细说明。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

文章作者:Tyan
博客:noahsnail.com  |  优快云  |  简书

1. Description

Implement Stack using Queues

2. Solution

  • Version 1
class MyStack {
public:
    /** Initialize your data structure here. */
    MyStack() {
        
    }
    
    /** Push element x onto stack. */
    void push(int x) {
        q1.push(x);
        top_value = x;
    }
    
    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        while(q1.size() != 1) {
            q2.push(q1.front());
            q1.pop();
        }
        int value = q1.front();
        q1.pop();
        q1 = q2;
        while(!q2.empty()) {
            top_value = q2.front();
            q2.pop();
        }
        return value;
    }
    
    /** Get the top element. */
    int top() {
        return top_value;
    }
    
    /** Returns whether the stack is empty. */
    bool empty() {
        return q1.empty() && q2.empty();
    }
private:
    queue<int> q1;
    queue<int> q2;
    int top_value;
};

/**
 * Your MyStack object will be instantiated and called as such:
 * MyStack obj = new MyStack();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.top();
 * bool param_4 = obj.empty();
 */
  • Version 2
class MyStack {
public:
    /** Initialize your data structure here. */
    MyStack() {
        
    }
    
    /** Push element x onto stack. */
    void push(int x) {
        q.push(x);
        top_value = x;
    }
    
    /** Removes the element on top of the stack and returns that element. */
    int pop() {
        queue<int> temp;
        while(q.size() != 1) {
            temp.push(q.front());
            top_value = q.front();
            q.pop();
        }
        int value = q.front();
        q.pop();
        q = temp;
        return value;
    }
    
    /** Get the top element. */
    int top() {
        return top_value;
    }
    
    /** Returns whether the stack is empty. */
    bool empty() {
        return q.empty();
    }
private:
    queue<int> q;
    int top_value;
};

/**
 * Your MyStack object will be instantiated and called as such:
 * MyStack obj = new MyStack();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.top();
 * bool param_4 = obj.empty();
 */

Reference

  1. https://leetcode.com/problems/implement-stack-using-queues/description/
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值