VOOZH about

URL: https://www.geeksforgeeks.org/java/priorityqueue-remove-method-in-java/

⇱ PriorityQueue remove() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PriorityQueue remove() Method in Java

Last Updated : 11 Jul, 2025

The remove() method of PriorityQueue class of java.util package is used to remove a particular element from a PriorityQueue. As we all know that the elements while entering into the priority queue are not sorted but as we all know while taking out elements from the priority queue the elements are always sorted being a trait of the priority queue. Here the default ordering of priority of elements for data types is defined as follows:

  • Integer: Smallest elements that come first (while dealing with positive numbers only)
  • String: Alphabetical ordering

Note: We can also insert a Comparator while creating an instance of this class which tells us how the priority should be defined.

Syntax:

PriorityQueue<String> = new PriorityQueue<String>(ComparatorHere);

Syntax: Remove method  

Priority_Queue.remove(Object O)

Parameters: The parameter O is of the type of PriorityQueue and specifies the element to be removed from the PriorityQueue.

Return Value: This method returns True if the specified element is present in the Queue else it returns False.

Example 1


Output
Initial PriorityQueue: [For, Geeks, To, Welcome, Geeks]
PriorityQueue after removing elements: [Geeks, To]

 Example 2 


Output: 
Initial PriorityQueue: [5, 10, 30, 20, 15]
PriorityQueue after removing elements: [10, 20, 15]

 

Geek, have you ever wondered what will happen if calls of remove() method exceed the elements present in the queue. In this scenario, it will continue to remove the elements that were there, and thereafter it will not find any element to remove priority-wise, so it will throw an exception which is as follows.

Note: This class do implements AbstractQueueInterface

Example 

Output:

👁 Image

Output explanation:

It is showcasing that there are no further elements left in the queue as a queue is empty by now so does it throw NoSuchElementException.

Comment