美文网首页
栈与队列

栈与队列

作者: ahuustcly | 来源:发表于2018-10-20 21:54 被阅读0次

    1.用两个队列实现一个栈

    import java.util.Stack;
    
    public class Solution {
        Stack<Integer> stack1 = new Stack<Integer>();
        Stack<Integer> stack2 = new Stack<Integer>();
        
        public void push(int node) {
            stack1.push(node);
        }
        
        public int pop() {
            if(stack2.empty()){
                while(!stack1.empty()){
                   stack2.push(stack1.pop());
                }
            }
            return stack2.pop();
        }
    }
    

    相关文章

      网友评论

          本文标题:栈与队列

          本文链接:https://www.haomeiwen.com/subject/uhqvzftx.html