摘要: // 封装链表类 function LinkedList() { // 内部的类:节点类 function Node(data) { this.data = data this.next = null } // 属性 this.head = null this.length = 0 // 1.追加方 阅读全文
posted @ 2020-06-04 22:33 问问大将军 阅读(372) 评论(0) 推荐(0) 编辑