第四章 栈 1. 栈的实现function Stack() { this.dataStore = []; // 保存元素 this.pop = pop; this.push = push; this.pee 数据结构与算法JavaScript描述读书笔记 2023-09-14 124 点赞 1 评论 187 浏览