堆栈相关题目

这篇博客介绍了如何使用栈和队列来实现特定的功能,如MyQueue类通过两个栈模拟队列操作,MyStack类通过栈实现类似队列的行为,以及MinStack类保持栈中最小元素始终可得。此外,还展示了如何使用栈来检查字符串括号的匹配性。这些数据结构和算法的应用展示了它们在实际问题中的灵活性和效率。
摘要由CSDN通过智能技术生成

class MyQueue {

    // 队列是先进先出,栈是先进后出,所以用两个栈来实现一个队列

    private Stack<Integer> in;
    private Stack<Integer> out;

    /** Initialize your data structure here. */
    public MyQueue() { // 初始化
        in = new Stack();
        out = new Stack();
    }
    
    /** Push element x to the back of queue. */
    public void push(int x) {
        in.push(x); // 加元素到尾部

    }
    
    /** Removes the element from in front of queue and returns that element. */
    public int pop() {
        in2Out();
        return out.pop();

    }
    
    /** Get the front element. */
    public int peek() {
        in2Out();
        return out.peek(); // 获取第一个元素

    }
    
    /** Returns whether the queue is empty. */
    public boolean empty() {
        return in.isEmpty() && out.isEmpty();

    }

    private void in2Out(){
        while(out.isEmpty()){
            while(!in.isEmpty()){
                out.push(in.pop());
            }
        }
    }
}

 

 

class MyStack {

    /**
    队列:尾进头出
    栈:头进头出
       在将一个元素x插入队列的时候,为了维护原来的后进先出顺序,需要让x插入队列首部,而队列的默认插入顺序是队列的尾部
       因此在将x插入队列尾部之后,需要让除了x之外的元素出队列,然后入队列
     */

     private  Queue<Integer> queue;

    /** Initialize your data structure here. */
    public MyStack() {
        queue = new LinkedList<>();

    }
    
    /** Push element x onto stack. */
    public void push(int x) {
        queue.add(x);
        int cnt = queue.size();
        while(cnt-- >1){
            queue.add(queue.poll());
        }

    }
    
    /** Removes the element on top of the stack and returns that element. */
    public int pop() {
        return queue.poll();

    }
    
    /** Get the top element. */
    public int top() {
        return queue.peek();

    }
    
    /** Returns whether the stack is empty. */
    public boolean empty() {
        return queue.isEmpty();

    }
}

class MinStack {

    private Stack<Integer> dataStack; // 正常的栈
    private Stack<Integer> minStack;  // 最小的在最上面
    private int min;

    /** initialize your data structure here. */
    public MinStack() {
        dataStack = new Stack<>();
        minStack = new Stack<>();
        min = Integer.MAX_VALUE;

    }
    
    public void push(int val) {
        dataStack.push(val);
        min = Math.min(min,val);
        minStack.push(min);

    }
    
    public void pop() {
        dataStack.pop();
        minStack.pop();
        min = minStack.isEmpty() ? Integer.MAX_VALUE : minStack.peek();

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

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

    }
}

class Solution {
    public boolean isValid(String s) {
        //利用一个栈来判断,如果是左括号则入栈,如果是右括号,则与栈里面拿出的元素比较
            // 第一个右括号,肯定是紧连着对应的左括号
        Stack<Character> stack = new Stack<>();
        for (int i = 0;i< s.length();i++){
            char ch = s.charAt(i);
            // 如果是左括号就入栈,如果是右括号就取出栈顶元素对比
            if(ch =='(' || ch== '[' || ch=='{'){
                stack.push(ch);
            }else{
                if(stack.isEmpty()) return false;

                char si = stack.pop();
                if(ch == ')' && si!= '(') return false;
                else if(ch == '}' && si!= '{') return false;
                 else if(ch == ']' && si!= '[') return false;
            }
        }
        return stack.isEmpty();
    

        
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zero _s

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值