摘要: // 节点 class Node { constructor(element) { this.element = element this.next = null } } // 链表 class LinkList { constructor() { this.size = 0 this.head = 阅读全文
posted @ 2023-10-20 12:10 佳佳460 阅读(2) 评论(0) 推荐(0) 编辑