摘要: function Queue(){ //这里是属性和方法 var items=[];//用数组的方法去存储数据 this.enqueue=function(element){ items.push(element); };//入列 ... 阅读全文
posted @ 2017-02-28 12:58 小金鱼有点笨 阅读(161) 评论(0) 推荐(0) 编辑
摘要: function Stack(){ //各种方法和属性的声明 var items=[];//用数组来保存栈里的元素 this.push=function(element){ items.push(element); };//将数据压到栈顶 ... 阅读全文
posted @ 2017-02-28 12:44 小金鱼有点笨 阅读(115) 评论(0) 推荐(0) 编辑