w3resource

Java: Create a new priority queue, add some colors (string) and print out the elements of the priority queue

Java Collection, PriorityQueue Exercises: Exercise-1 with Solution

Write a Java program to create a priority queue, add some colors (strings) and print out the elements of the priority queue.

Sample Solution:-

Java Code:

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

Sample Output:

Elements of the Priority Queue:                                        
[Black, Green, Orange, White, Red] 

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Remove a given element from a tree set.
Next: Iterate through all elements in priority queue.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.