자바 Queue 문법 1. Queue 선언 Queue Q = new LinkedList(); 2. Queue에 데이터 삽입 Q.offer(1); 3. Queue에 데이터 꺼내기 Q.poll(); 4. Queue내에 데이터 존재 여부 Q.isEmpty(); 5. Queue의 크기 Q.size(); 예시 문제 (공주 구하기) import java.util.*; public class Main { public static void main(String[] args){ Scanner in=new Scanner(System.in); int n = in.nextInt(); int k = in.nextInt(); int answer = 0; Queue Q = new LinkedList(); for(int i=1; i