面试题7:用两个栈实现队列

来源:互联网 发布:聊天室软件开发 编辑:程序博客网 时间:2024/06/03 23:41
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.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            } 
        }
    return stack2.pop();
    }

}


if是只要条件满足就执行一次,while是只要条件满足就不停地执行

原创粉丝点击