用js刷剑指offer(用两个栈实现队列)

题目描述

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。

牛客网链接

js代码

let stack1 = []
let stack2 = []
function push(node)
{
    // write code here
    stack1.push(node)
}
function pop()
{
    // write code here
    if (stack2.length === 0){
        while (stack1.length > 0){
            stack2.push(stack1.pop())
        }
    }
    return stack2.pop()
}
posted @ 2019-09-20 11:23  1Shuan  阅读(156)  评论(0编辑  收藏  举报