摘要: class StackArray { constructor() { this.items = []; } push(element) { this.items.push(element); } pop() { return this.items.pop(); } peek() { return t 阅读全文
posted @ 2020-10-26 23:14 WP-WangPin 阅读(100) 评论(0) 推荐(0) 编辑