JAVA:实现DoublyLinkedList双链表算法
package com.thealgorithms.datastructures.lists;
public class DoublyLinkedList {
/**
* Head refers to the front of the list
*/
protected Link head;
/**
*
package com.thealgorithms.datastructures.lists;
public class DoublyLinkedList {
/**
* Head refers to the front of the list
*/
protected Link head;
/**
*