摘要: //双向链表 function DoubleLinkedList() { function Node(value) { this.value = value this.next = null this.prev = null } //链表头节点 this.head = null //链表尾节点 th 阅读全文
posted @ 2019-10-07 13:11 那个村 阅读(268) 评论(0) 推荐(0)