PriorityQueue ์ ๋ ฌ ์ ์๋ผ?
PriorityQueue ๋ด๋ฆผ์ฐจ์ ์ ๋ ฌํ๋ ๋ฒ
PriorityQueue<Integer> pq = new PriorityQueue<Integer>(Collections.reverseOrder());
PriorityQueue<Integer> pq = new PriorityQueue<Integer>((a, b) -> b - a);
๊ทผ๋ฐ ์ ๋ ฌ ์ ์๋ผโฆ?
์์ ๋ฐฉ๋ฒ์ผ๋ก ์ ๋ ฌ์ด ๋๊ธดํ์ง๋ง ์ ๋ ฌ ๊ฒฐ๊ณผ๋ฅผ ๋ณด์ฅํ์ง๋ ์๋๋ค.
์ค๋ก์ง poll()
์ฐ์ฐ์ ์ํํ ๋ ์ต์๊ฐ์ ๋ฐํํ๋ ๊ฒ๋ง์ ๋ณด์ฅํ ๋ฟ!