JAVA
Queue
iRang1101
2014. 4. 7. 15:24
Queue (큐).
먼저 들어가 간 녀석이 먼저 나온다.
offer() 객체를 넣는다.
poll() 큐에서 객체를 꺼내온다.
peek() 객체를 꺼내오나, 제거하진 않는다.
Queue Myque = new LinkedList();