摘要: 单链表 class Node { constructor(data) { this.data = data this.next = null } } class NodeList { constructor() { this.head = null this.length = 0 } appendN 阅读全文
posted @ 2023-11-27 18:06 Karle 阅读(3) 评论(0) 推荐(0) 编辑