前端企业面试题:企业真实案例——25
JS实现双向链表class Node { constructor(value){ this.val = value; this.next = null; this.prev = null; }}class DoubleLinkList { constructor(){ //记录头和尾 this.head = this.tail = null; } find(value) {