Skip to content
Advertisement

Change priorityQueue to max priorityqueue

I have priority queue in Java of Integers:

JavaScript

When I call pq.poll() I get the minimum element.

Question: how to change the code to get the maximum element?

Advertisement

Answer

How about like this:

JavaScript

The Collections.reverseOrder() provides a Comparator that would sort the elements in the PriorityQueue in a the oposite order to their natural order in this case.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement