[백엔드 과정][자바 기초] - 큐 구현하기 (3.DoubleLinkedList를 이용한 구현)
FIFO(First-In-First-Out)으로 먼저 저장한 데이터가 먼저 나오는 구조를 가집니다.(선입선출) 즉, 저장된 데이터중 가장 앞에 있는 데이터만 접근 가능함을 나타냅니다. 음식점에서 주문을 위해 줄을 서고, 가장 앞에서부터 주문함으로 예로 들 수 있습니다. DoubleLinkedList A Doubly Linked List (DLL) contains an extra pointer, typically called the previous pointer, together with the next pointer and data which are there in the singly linked list. 📌출처: https://www.geeksforgeeks.org/doubly-linked-list/..