w3resource

Java: Count the number of elements in a priority queue

Java Collection, PriorityQueue Exercises: Exercise-6 with Solution

Write a Java program to count the number of elements in a priority queue.

Sample Solution:-

Java Code:

import java.util.PriorityQueue;
  public class Exercise6 {
  public static void main(String[] args) {
    // create an empty Priority Queue
    PriorityQueue<String> pq = new PriorityQueue<String>();  
   // use add() method to add values in the Priority Queue
          pq.add("Red");
          pq.add("Green");
          pq.add("Black");
          pq.add("Pink");
          pq.add("orange");
     System.out.println("Priority Queue: " + pq);
    System.out.println("Size of the Priority Queue: " + pq.size());
   }
}

Sample Output:

Priority Queue: [Black, Pink, Green, Red, orange]                      
Size of the Priority Queue: 5

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Remove all the elements from a priority queue.
Next: Compare two priority queues.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/collection/java-collection-priority-queue-exercise-6.php