1. 코드class CircularLinkedList { NodeBi head; NodeBi tail; CircularLinkedList(NodeBi node) { this.head = node; this.tail = node; node.next = this.head; node.prev = this.head; } public boolean isEmpty() { if(this.head == null) { return true; } return false; } // 데이터 추가 // before_data가 null인 경우, 가장 끝에 추가 ..