摘要: 1 //-----------------------------------存储结构为数组-------------------------------------------- 2 function Stack(){ 3 this.store = []; 4 this.top = 0; 5 this.push = push; 6 this.pop ... 阅读全文
posted @ 2017-01-02 20:40 巫瞅瞅 阅读(209) 评论(0) 推荐(0) 编辑