摘要: class Deque { constructor() { this.count = 0; this.lowestCount = 0; this.items = {}; } addFront(element) { if (this.isEmpty()) { this.addBack(element) 阅读全文
posted @ 2020-10-29 13:24 WP-WangPin 阅读(104) 评论(0) 推荐(0) 编辑