Queue 배열을 사용해서 한번 ListNode를 사용해서 한번 queue는 기본적인 자료구조의 한가지로 먼저 넣은 데이터가 먼저 나오는 선입선출 FIFO(First In First Out) 구조로 저장하는 구조이다. 영어에서 queue는 무언가를 사러 일렬로 서 있는 줄을 말한다. 후입선출에 스택과는 반대되는 개념이다. 구현 public class ArrayQueue { private final int MAX_SIZE = 10; private int[] data; private int head; private int tail; public ArrayQueue() { this.data = new int[MAX_SIZE]; this.head = 0; this.tail = 0; } /** * head의 위치..