Queue: 순차적으로 값이 들어오고 나가는 연속적인 데이터들의 집합출처: https://coding-factory.tistory.com/602
Queue 인터페이스를 구현한 구현체가 PriorityQueue다.기본적인 함수는 동일하게 사용한다(add(e),remove(),element()...)An unbounded priority queue based on a priority heap. The element