Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, PriorityQueue Exercises: Remove all the elements from a priority queue

Java Collection, PriorityQueue Exercises: Exercise-5 with Solution

Write a Java program to remove all the elements from a priority queue.

Sample Solution:-

Java Code:

import java.util.*;
  public class Example5 {
  public static void main(String[] args) {
   // Create Priority Queue
           PriorityQueue<String> pq1 = new PriorityQueue<String>();  
   // use add() method to add values in the Priority Queue
          pq1.add("Red");
          pq1.add("Green");
          pq1.add("Black");
          pq1.add("White");
    System.out.println("Original Priority Queue: "+pq1);
   
   // Removing all the elements from the Priority Queue
    pq1.clear();
 
    System.out.println("The New Priority Queue: " + pq1);
  } 
}

Sample Output:

Original Priority Queue: [Black, Red, Green, White]                    
The New Priority Queue: []

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Insert a given element into a priority queue.
Next: Count the number of elements in a priority queue.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe