1. 코드Class NodeBi { int data; NodeBi next; NodeBi prev; NodeBi(int data, NodeBi next, NodeBi prev) { this.data = data; this.next = next; this.prev = prev; }}class DoublyLinkedList extends LinkedList { NodeBi head; NodeBi tail; DoublyLinkedList(NodeBi node) { this.head = node; this.tail = node; } // 연결 리스트가 비어있는지 확인 p..