摘要: 1. 双向链表相关 class Node { constructor(data) { this.data = data; // 节点的数据域 // this.prev = null; // 节点的指针域 this.next = null; // 节点的指针域 } } class SingleList 阅读全文
posted @ 2021-12-07 14:43 入门级小菜 阅读(86) 评论(0) 推荐(0) 编辑