赞
踩
//队列 function Queue() { var collection = []; //打印队列 this.print = function() { console.log(collection); } //入队列(向队列尾部增加一个元素) this.enqueue = function(element) { collection.push(element); } //出队列(移除队头元素) this.dequeue = function() { return collection.shift(); } //取队头元素 this
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。