剑指offer-用两个栈实现队列
Posted Blog of Eric Wu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-用两个栈实现队列相关的知识,希望对你有一定的参考价值。
题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
题目分析
栈是先进后出,队列是先进先出,因此两个栈,一个用来push,一个用来pop,同时注意下两个栈不为空的时候。
代码
const outStack = [], inStack = []; function push(node) { // write code here inStack.push(node); } function pop() { // write code here if (!outStack.length) { while (inStack.length) { outStack.push(inStack.pop()); } } return outStack.pop(); }
以上是关于剑指offer-用两个栈实现队列的主要内容,如果未能解决你的问题,请参考以下文章