w3resource

Java: Iterate through all elements in priority queue

Java Collection, PriorityQueue Exercises: Exercise-2 with Solution

Write a Java program to iterate through all elements in the priority queue.

Sample Solution:-

Java Code:

import java.util.PriorityQueue;
public class Exercise2 {
  public static void main(String[] args) {
    PriorityQueue<String> pq = new PriorityQueue<String>();  
  pq.add("Red");
  pq.add("Green");
  pq.add("Orange");
  pq.add("White");
  pq.add("Black");
  System.out.println("Elements of the Priority Queue: ");
  // iterate the Priority Queue
  for (String element : pq) {
    System.out.println(element);
    }
 }
}

Sample Output:

Elements of the Priority Queue:                                        
Black                                                                  
Green                                                                  
Orange                                                                 
White                                                                  
Red

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Create a new priority queue, add some colors (string) and print out the elements of the priority queue.
Next: Add all the elements of a priority queue to another priority queue.

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-2.php