How to Remove the Top Element From a PriorityQueue in Java? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report A priority queue is a specialized type of queue, in which elements are given with priorities, and those with more priorities are served before elements with lower priorities. It's equivalent to a regular queue (first-in, first-out) but prioritizes urgency rather than arrival order. Remove the Top Element from a PriorityQueueIn Java, we can remove the top element (element with the highest priority) from a PriorityQueue using the poll() method. This method removes and returns the highest priority element from the queue. Syntax:public E poll()Program to Remove the Top Element(highest priority) From a PriorityQueueHere is the implementation: Java // Java Program to Remove the Top // Element From a PriorityQueue import java.io.*; import java.util.PriorityQueue; // Driver Class public class Main { public static void main(String[] args) { // Creating a PriorityQueue PriorityQueue<Integer> pq = new PriorityQueue<>(); // Adding elements to the PriorityQueue pq.add(5); pq.add(10); pq.add(1); pq.add(20); System.out.println("PriorityQueue before removal: " + pq); // Removing the top element (highest priority) using // poll() int top = pq.poll(); System.out.println("Removed element: " + top); // Printing the PriorityQueue after removal System.out.println("PriorityQueue after removal: " + pq); } } OutputPriorityQueue before removal: [1, 10, 5, 20] Removed element: 1 PriorityQueue after removal: [5, 10, 20] Explaination of the above Program:Create a PriorityQueueAdd Elements to the PriorityQueueRemove the Top Element (Highest Priority)Print the Removed ElementPrint PriorityQueue after Removal Create Quiz Comment M mrstax Follow 0 Improve M mrstax Follow 0 Improve Article Tags : Java Java Programs java-priority-queue Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like