码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-07-08 15:16:01      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:code   pac   keyword   else   space   队列   实现   alt   word   

以下为借鉴

var stack1 = [], stack2=[];

function push(node){
    stack1.push(node);
}
function pop(){
    if(stack2.length){
        return stack2.pop();
    }else{
        if(stack1.length){
            var len = stack1.length;
            for(var i=0;i<len;i++){
                stack2.push(stack1.pop());
            }
            return stack2.pop()
        }else{
             return null
        }
         
    }
}
 
 

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

标签:code   pac   keyword   else   space   队列   实现   alt   word   

原文地址:https://www.cnblogs.com/zhouyideboke/p/11151311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!